OSDN Git Service

include/hw/or-irq.h: Drop unused in_irqs field
authorPeter Maydell <peter.maydell@linaro.org>
Thu, 12 Oct 2017 13:17:47 +0000 (14:17 +0100)
committerMichael Tokarev <mjt@tls.msk.ru>
Mon, 16 Oct 2017 18:09:15 +0000 (21:09 +0300)
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>
include/hw/or-irq.h

index d400a81..fd900fc 100644 (file)
@@ -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;
 };