diff options
author | Peter Crosthwaite <peter.crosthwaite@xilinx.com> | 2014-09-25 22:22:04 -0700 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-10-23 16:41:25 +0200 |
commit | b58c303590c3d56cbe7435f7e2abe605e4983b8d (patch) | |
tree | f41716c11ed5c57cc5974c7f85e578d06aae7b5c /hw/core/irq.c | |
parent | 60a79016aed70c4ebcd45a8006c46dc9c397685a (diff) |
irq: Remove qemu_irq_intercept_out
No more users left and obsoleted by qdev_intercept_gpio_out.
Reviewed-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/core/irq.c')
-rw-r--r-- | hw/core/irq.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/hw/core/irq.c b/hw/core/irq.c index 4a580a22f3..8a62a36d5e 100644 --- a/hw/core/irq.c +++ b/hw/core/irq.c @@ -144,12 +144,6 @@ void qemu_irq_intercept_in(qemu_irq *gpio_in, qemu_irq_handler handler, int n) } } -void qemu_irq_intercept_out(qemu_irq **gpio_out, qemu_irq_handler handler, int n) -{ - qemu_irq *old_irqs = *gpio_out; - *gpio_out = qemu_allocate_irqs(handler, old_irqs, n); -} - static const TypeInfo irq_type_info = { .name = TYPE_IRQ, .parent = TYPE_OBJECT, |