6033b9ecd4
The pcspk device is the only user of the init_isa function, and the only -soundhw option which does not create a new device (it hacks into the PCSpkState by hand). Remove it, since it was deprecated. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
13 lines
373 B
C
13 lines
373 B
C
#ifndef HW_SOUNDHW_H
|
|
#define HW_SOUNDHW_H
|
|
|
|
void pci_register_soundhw(const char *name, const char *descr,
|
|
int (*init_pci)(PCIBus *bus));
|
|
void deprecated_register_soundhw(const char *name, const char *descr,
|
|
int isa, const char *typename);
|
|
|
|
void soundhw_init(void);
|
|
void select_soundhw(const char *optarg);
|
|
|
|
#endif
|