diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-04-18 18:43:59 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-04-29 12:16:36 -0500 |
commit | ffa48cf5ab719e1e181e51b87bc0f5d397b791fa (patch) | |
tree | 5672b356dd914857ef70583950693c5620311e3d /arch_init.c | |
parent | 36cd6f6f20724d49aac1910e310f81a43e0cb657 (diff) |
audio: remove HAS_AUDIO
Several targets can have wavcapture/-soundhw support via PCI cards.
HAS_AUDIO is a useless limitation, remove it.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Message-id: 1366303444-24620-4-git-send-email-pbonzini@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'arch_init.c')
-rw-r--r-- | arch_init.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/arch_init.c b/arch_init.c index 050418485c..655dfa5d3b 100644 --- a/arch_init.c +++ b/arch_init.c @@ -887,7 +887,6 @@ SaveVMHandlers savevm_ram_handlers = { .cancel = ram_migration_cancel, }; -#ifdef HAS_AUDIO struct soundhw { const char *name; const char *descr; @@ -1006,14 +1005,6 @@ void audio_init(ISABus *isa_bus, PCIBus *pci_bus) } } } -#else -void select_soundhw(const char *optarg) -{ -} -void audio_init(ISABus *isa_bus, PCIBus *pci_bus) -{ -} -#endif int qemu_uuid_parse(const char *str, uint8_t *uuid) { @@ -1069,15 +1060,6 @@ void cpudef_init(void) #endif } -int audio_available(void) -{ -#ifdef HAS_AUDIO - return 1; -#else - return 0; -#endif -} - int tcg_available(void) { return 1; |