diff options
author | Zongyuan Li <zongyuan.li@smartx.com> | 2022-03-25 02:15:57 +0800 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2022-04-21 11:37:04 +0100 |
commit | 0ebfc997d29c3789b9bd41fe53fc198c2fd550da (patch) | |
tree | a22fe19e43e7e392a920d2ad511cc8a2aec90277 /include | |
parent | d0a030d80165d0b20b0687dab8f99056eee68352 (diff) | |
download | qemu-0ebfc997d29c3789b9bd41fe53fc198c2fd550da.zip qemu-0ebfc997d29c3789b9bd41fe53fc198c2fd550da.tar.gz qemu-0ebfc997d29c3789b9bd41fe53fc198c2fd550da.tar.bz2 |
hw/core/irq: remove unused 'qemu_irq_split' function
Signed-off-by: Zongyuan Li <zongyuan.li@smartx.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20220324181557.203805-5-zongyuan.li@smartx.com
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/811
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/hw/irq.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/hw/irq.h b/include/hw/irq.h index dc7abf1..645b73d 100644 --- a/include/hw/irq.h +++ b/include/hw/irq.h @@ -46,11 +46,6 @@ void qemu_free_irq(qemu_irq irq); /* Returns a new IRQ with opposite polarity. */ qemu_irq qemu_irq_invert(qemu_irq irq); -/* Returns a new IRQ which feeds into both the passed IRQs. - * It's probably better to use the TYPE_SPLIT_IRQ device instead. - */ -qemu_irq qemu_irq_split(qemu_irq irq1, qemu_irq irq2); - /* For internal use in qtest. Similar to qemu_irq_split, but operating on an existing vector of qemu_irq. */ void qemu_irq_intercept_in(qemu_irq *gpio_in, qemu_irq_handler handler, int n); |