aboutsummaryrefslogtreecommitdiff
path: root/include/hw/or-irq.h
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2017-10-12 14:17:47 +0100
committerMichael Tokarev <mjt@tls.msk.ru>2017-10-16 21:09:15 +0300
commit69fa4f9568b18b9b1726a3e51a0bc48478798ad4 (patch)
treea863a45e3056df60e151859c42c2552197e111ec /include/hw/or-irq.h
parent52aa5644e8e89ebfc3b1d0abdb7cc502ce9db599 (diff)
downloadqemu-69fa4f9568b18b9b1726a3e51a0bc48478798ad4.zip
qemu-69fa4f9568b18b9b1726a3e51a0bc48478798ad4.tar.gz
qemu-69fa4f9568b18b9b1726a3e51a0bc48478798ad4.tar.bz2
include/hw/or-irq.h: Drop unused in_irqs field
The struct OrIRQState has an unused member field in_irqs. This is a legacy of earlier versions of the patch; the code that used it was dropped from the final version of the code that went into master, but we forgot to delete the no-longer-used struct field. Do so now. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Alistair Francis <alistair.francis@xilinx.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'include/hw/or-irq.h')
-rw-r--r--include/hw/or-irq.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/hw/or-irq.h b/include/hw/or-irq.h
index d400a81..fd900fc 100644
--- a/include/hw/or-irq.h
+++ b/include/hw/or-irq.h
@@ -38,7 +38,6 @@ struct OrIRQState {
DeviceState parent_obj;
qemu_irq out_irq;
- qemu_irq *in_irqs;
bool levels[MAX_OR_LINES];
uint16_t num_lines;
};