mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-18 23:52:14 -06:00

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>
12 lines
373 B
C
12 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
|