diff options
| author | Juan Quintela <quintela@redhat.com> | 2009-08-28 15:28:17 +0200 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-09-04 09:37:23 -0500 |
| commit | 5d4e84c8b9d53807e36bf4609d6db2b7061efa40 (patch) | |
| tree | 314c3b757bb5a3b7154faaaff728e4dfcaa8661f /hw/r2d.c | |
| parent | 6c009fa44622aaeb8608d02c991b7fc2b804a64e (diff) | |
| download | focaccia-qemu-5d4e84c8b9d53807e36bf4609d6db2b7061efa40.tar.gz focaccia-qemu-5d4e84c8b9d53807e36bf4609d6db2b7061efa40.zip | |
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 <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/r2d.c')
| -rw-r--r-- | hw/r2d.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/hw/r2d.c b/hw/r2d.c index 4667a5d2fc..6ce556e801 100644 --- a/hw/r2d.c +++ b/hw/r2d.c @@ -183,8 +183,10 @@ static qemu_irq *r2d_fpga_init(target_phys_addr_t base, qemu_irq irl) return qemu_allocate_irqs(r2d_fpga_irq_set, s, NR_IRQS); } -static void r2d_pci_set_irq(qemu_irq *p, int n, int l) +static void r2d_pci_set_irq(void *opaque, int n, int l) { + qemu_irq *p = opaque; + qemu_set_irq(p[n], l); } |