diff options
author | pbrook | 2007-04-07 20:14:41 +0200 |
---|---|---|
committer | pbrook | 2007-04-07 20:14:41 +0200 |
commit | d537cf6c8624b27ce2b63431d2f8937f6356f652 (patch) | |
tree | d7173d79977b4426b2ff225b35c839c8a2e4a215 /hw/unin_pci.c | |
parent | PowerPC 64 fixes (diff) | |
download | qemu-d537cf6c8624b27ce2b63431d2f8937f6356f652.tar.gz qemu-d537cf6c8624b27ce2b63431d2f8937f6356f652.tar.xz qemu-d537cf6c8624b27ce2b63431d2f8937f6356f652.zip |
Unify IRQ handling.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2635 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/unin_pci.c')
-rw-r--r-- | hw/unin_pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/unin_pci.c b/hw/unin_pci.c index 6448a6f250..f32d19522f 100644 --- a/hw/unin_pci.c +++ b/hw/unin_pci.c @@ -146,12 +146,12 @@ static int pci_unin_map_irq(PCIDevice *pci_dev, int irq_num) return (irq_num + (pci_dev->devfn >> 3)) & 3; } -static void pci_unin_set_irq(void *pic, int irq_num, int level) +static void pci_unin_set_irq(qemu_irq *pic, int irq_num, int level) { - openpic_set_irq(pic, irq_num + 8, level); + qemu_set_irq(pic[irq_num + 8], level); } -PCIBus *pci_pmac_init(void *pic) +PCIBus *pci_pmac_init(qemu_irq *pic) { UNINState *s; PCIDevice *d; |