Home | History | Annotate | Line # | Download | only in dev
spkrvar.h revision 1.3
      1  1.3  christos /* $NetBSD: spkrvar.h,v 1.3 2016/12/09 05:45:20 christos Exp $ */
      2  1.1       nat 
      3  1.1       nat #ifndef _SYS_DEV_SPKRVAR_H
      4  1.1       nat #define _SYS_DEV_SPKRVAR_H
      5  1.1       nat 
      6  1.3  christos #include <sys/module.h>
      7  1.3  christos 
      8  1.1       nat device_t speakerattach_mi(device_t);
      9  1.1       nat void speaker_play(u_int, u_int, u_int);
     10  1.1       nat 
     11  1.2  christos // XXX:
     12  1.2  christos void spkr_tone(u_int, u_int);
     13  1.2  christos void spkr_rest(int);
     14  1.2  christos int spkr__modcmd(modcmd_t, void *);
     15  1.2  christos int spkr_probe(device_t, cfdata_t, void *);
     16  1.2  christos extern int spkr_attached;
     17  1.2  christos 
     18  1.1       nat #endif /* _SYS_DEV_SPKRVAR_H */
     19