projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e918ee0
)
Malta has no ISA bus.
author
ths
<ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Wed, 6 Jun 2007 16:52:12 +0000
(16:52 +0000)
committer
ths
<ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Wed, 6 Jun 2007 16:52:12 +0000
(16:52 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2947
c046a42c
-6fe2-441c-8c8c-
71466251a162
hw/mips_malta.c
patch
|
blob
|
history
diff --git
a/hw/mips_malta.c
b/hw/mips_malta.c
index 9786023c3033d67e0a4e2e1725df3a446e0b70ae..d8e93910450f6af5e7fd4cdfb8b1fae8fe141047 100644
(file)
--- a/
hw/mips_malta.c
+++ b/
hw/mips_malta.c
@@
-451,17
+451,8
@@
static void audio_init (PCIBus *pci_bus)
s = AUD_init ();
if (s) {
for (c = soundhw; c->name; ++c) {
- if (c->enabled) {
- if (c->isa) {
- fprintf(stderr, "qemu: Unsupported Sound Card: %s\n", c->name);
- exit(1);
- }
- else {
- if (pci_bus) {
- c->init.init_pci (pci_bus, s);
- }
- }
- }
+ if (c->enabled)
+ c->init.init_pci (pci_bus, s);
}
}
}