From 5d4e84c8b9d53807e36bf4609d6db2b7061efa40 Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Fri, 28 Aug 2009 15:28:17 +0200 Subject: We want the argument pass to set_irq to be opaque piix_pci want to pass more things that the pic Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- hw/piix_pci.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'hw/piix_pci.c') diff --git a/hw/piix_pci.c b/hw/piix_pci.c index 378b7bf..1a51ec5 100644 --- a/hw/piix_pci.c +++ b/hw/piix_pci.c @@ -51,7 +51,7 @@ static uint32_t i440fx_addr_readl(void* opaque, uint32_t addr) return s->config_reg; } -static void piix3_set_irq(qemu_irq *pic, int irq_num, int level); +static void piix3_set_irq(void *opaque, int irq_num, int level); /* return the global irq number corresponding to a given device irq pin. We could also use the bus number to have a more precise @@ -233,9 +233,10 @@ PCIBus *i440fx_init(PCII440FXState **pi440fx_state, qemu_irq *pic) static PCIDevice *piix3_dev; -static void piix3_set_irq(qemu_irq *pic, int irq_num, int level) +static void piix3_set_irq(void *opaque, int irq_num, int level) { int i, pic_irq, pic_level; + qemu_irq *pic = opaque; pci_irq_levels[irq_num] = level; -- cgit v1.1