diff options
author | Paul Brook <paul@codesourcery.com> | 2009-05-12 12:02:38 +0100 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2009-05-12 12:02:38 +0100 |
commit | 0d9acba8fddbf970c7353083e6a60b47017ce3e4 (patch) | |
tree | d4b709ce317ced6e21ea29378d00a0b5dd6c6bf6 /hw/mips_jazz.c | |
parent | Update docs on dynamic condition code calculation (diff) | |
download | qemu-kvm-0d9acba8fddbf970c7353083e6a60b47017ce3e4.tar.gz qemu-kvm-0d9acba8fddbf970c7353083e6a60b47017ce3e4.tar.bz2 qemu-kvm-0d9acba8fddbf970c7353083e6a60b47017ce3e4.zip |
Make AUD_init failure fatal
Failure to initialize the audio subsystem is not handled consistently.
Where it is handled it has guest visible effects, which is wrong.
We already have a "nosound" audio driver as a last resort, so trying to
proceed without an audio backend seems pointless.
Also protect against multiple calls to AUD_init so that this can be
pushed down into individual devices.
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/mips_jazz.c')
-rw-r--r-- | hw/mips_jazz.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/hw/mips_jazz.c b/hw/mips_jazz.c index 955041336..3734aa918 100644 --- a/hw/mips_jazz.c +++ b/hw/mips_jazz.c @@ -107,12 +107,10 @@ static void audio_init(qemu_irq *pic) AudioState *s; s = AUD_init(); - if (s) { - for (c = soundhw; c->name; ++c) { - if (c->enabled) { - if (c->isa) { - c->init.init_isa(s, pic); - } + for (c = soundhw; c->name; ++c) { + if (c->enabled) { + if (c->isa) { + c->init.init_isa(s, pic); } } } |