]> xenbits.xensource.com Git - qemu-xen-4.0-testing.git/commitdiff
Malta has no ISA bus.
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>
Wed, 6 Jun 2007 16:52:12 +0000 (16:52 +0000)
committerths <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

index 9786023c3033d67e0a4e2e1725df3a446e0b70ae..d8e93910450f6af5e7fd4cdfb8b1fae8fe141047 100644 (file)
@@ -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);
             }
         }
     }