diff options
author | Paul Brook <paul@codesourcery.com> | 2009-05-26 14:56:11 +0100 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2009-05-26 14:56:11 +0100 |
commit | 067a3ddc8876cee8451d6f690a051e413a593fdc (patch) | |
tree | 1e0d067b7784874397b189947fde6f05dc3434ad /hw/etraxfs_pic.c | |
parent | c2fb26379e8bd0586f3ff054538217377f86635f (diff) |
Remove qdev irq sink handling
We have both IRQ sinks and GPIO inputs. These are in principle exactly
the same thing, so remove the former.
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/etraxfs_pic.c')
-rw-r--r-- | hw/etraxfs_pic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/etraxfs_pic.c b/hw/etraxfs_pic.c index da9d0c3be6..585e7850f5 100644 --- a/hw/etraxfs_pic.c +++ b/hw/etraxfs_pic.c @@ -141,7 +141,7 @@ static void etraxfs_pic_init(SysBusDevice *dev) int intr_vect_regs; s->interrupt_vector = qdev_get_prop_ptr(&dev->qdev, "interrupt_vector"); - qdev_init_irq_sink(&dev->qdev, irq_handler, 32); + qdev_init_gpio_in(&dev->qdev, irq_handler, 32); sysbus_init_irq(dev, &s->parent_irq); sysbus_init_irq(dev, &s->parent_nmi); |