xref: /openbmc/qemu/include/hw/audio/soundhw.h (revision 1ff7b531963a71f10880d119db8fbcc591a2652a)
1 #ifndef HW_AUDIO_H
2 #define HW_AUDIO_H
3 
4 void isa_register_soundhw(const char *name, const char *descr,
5                           int (*init_isa)(ISABus *bus));
6 
7 void pci_register_soundhw(const char *name, const char *descr,
8                           int (*init_pci)(PCIBus *bus));
9 
10 void soundhw_init(void);
11 void select_soundhw(const char *optarg);
12 
13 #endif
14