From: Peter Maydell Date: Thu, 12 Oct 2017 13:17:47 +0000 (+0100) Subject: include/hw/or-irq.h: Drop unused in_irqs field X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=69fa4f9568b18b9b1726a3e51a0bc48478798ad4;p=qemu.git 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 Reviewed-by: Alistair Francis Signed-off-by: Michael Tokarev --- diff --git a/include/hw/or-irq.h b/include/hw/or-irq.h index d400a8120b..fd900fcf19 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; };