1 /* $NetBSD: spkrvar.h,v 1.2 2016/12/09 04:46:39 christos Exp $ */ 2 3 #ifndef _SYS_DEV_SPKRVAR_H 4 #define _SYS_DEV_SPKRVAR_H 5 6 device_t speakerattach_mi(device_t); 7 void speaker_play(u_int, u_int, u_int); 8 9 // XXX: 10 void spkr_tone(u_int, u_int); 11 void spkr_rest(int); 12 int spkr__modcmd(modcmd_t, void *); 13 int spkr_probe(device_t, cfdata_t, void *); 14 extern int spkr_attached; 15 16 #endif /* _SYS_DEV_SPKRVAR_H */ 17