summaryrefslogtreecommitdiff
path: root/audio/audio.c
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2009-07-27 16:13:25 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2009-07-27 14:10:55 -0500
commit2358a4940b7f9b863fa8084960f40517985df8c1 (patch)
tree5991a7b52556e56f016567504027ab0d5a712e93 /audio/audio.c
parent2f7bb8780af4a007e90045b4cc97f558e956adf9 (diff)
downloadqemu-2358a4940b7f9b863fa8084960f40517985df8c1.tar.gz
Generate config-host.h from config-host.mak
Generate CONFIG_AUDIO_DRIVERS. Order is important here, because the first driver in the list is the one used by default. Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'audio/audio.c')
-rw-r--r--audio/audio.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/audio/audio.c b/audio/audio.c
index 694a83e4ec..0a3830dc43 100644
--- a/audio/audio.c
+++ b/audio/audio.c
@@ -37,8 +37,13 @@
#define SW_NAME(sw) (sw)->name ? (sw)->name : "unknown"
+
+/* Order of CONFIG_AUDIO_DRIVERS is import.
+ The 1st one is the one used by default, that is the reason
+ that we generate the list.
+*/
static struct audio_driver *drvtab[] = {
- AUDIO_DRIVERS
+ CONFIG_AUDIO_DRIVERS
&no_audio_driver,
&wav_audio_driver
};