diff options
-rw-r--r-- | hw/cs4231a.c | 2 | ||||
-rw-r--r-- | hw/sb16.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hw/cs4231a.c b/hw/cs4231a.c index d482e04ac9..46c71eb083 100644 --- a/hw/cs4231a.c +++ b/hw/cs4231a.c @@ -642,7 +642,7 @@ int cs4231a_init (qemu_irq *pic) s = qemu_mallocz (sizeof (*s)); - s->pic = isa_reserve_irq(conf.irq); + s->pic = isa_reserve_irq (conf.irq); s->dma = conf.dma; s->port = conf.port; @@ -1408,7 +1408,7 @@ int SB16_init (qemu_irq *pic) s = qemu_mallocz (sizeof (*s)); s->cmd = -1; - s->pic = isa_reserve_irq(conf.irq); + s->pic = isa_reserve_irq (conf.irq); s->dma = conf.dma; s->hdma = conf.hdma; s->port = conf.port; |