aboutsummaryrefslogtreecommitdiffstats
path: root/hw/pc.c
diff options
context:
space:
mode:
authormalc <av1474@comtv.ru>2009-05-20 03:25:22 +0400
committermalc <av1474@comtv.ru>2009-05-20 03:27:26 +0400
commit3a8bae3e057a775070b5da887ce506a5f9ec6139 (patch)
tree03efa0798573ee3204ff6448abc57af5ec23d469 /hw/pc.c
parent26d64a85a32192b559364f241908fb24cda378e6 (diff)
Remove dead code
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'hw/pc.c')
-rw-r--r--hw/pc.c21
1 files changed, 7 insertions, 14 deletions
diff --git a/hw/pc.c b/hw/pc.c
index 901489a96..5c049bfc8 100644
--- a/hw/pc.c
+++ b/hw/pc.c
@@ -778,21 +778,14 @@ static int parallel_irq[MAX_PARALLEL_PORTS] = { 7, 7, 7 };
static void audio_init (PCIBus *pci_bus, qemu_irq *pic)
{
struct soundhw *c;
- int audio_enabled = 0;
- for (c = soundhw; !audio_enabled && c->name; ++c) {
- audio_enabled = c->enabled;
- }
-
- if (audio_enabled) {
- for (c = soundhw; c->name; ++c) {
- if (c->enabled) {
- if (c->isa) {
- c->init.init_isa(pic);
- } else {
- if (pci_bus) {
- c->init.init_pci(pci_bus);
- }
+ for (c = soundhw; c->name; ++c) {
+ if (c->enabled) {
+ if (c->isa) {
+ c->init.init_isa(pic);
+ } else {
+ if (pci_bus) {
+ c->init.init_pci(pci_bus);
}
}
}