From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46263) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e2dMv-0006lW-8M for qemu-devel@nongnu.org; Thu, 12 Oct 2017 09:17:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e2dMu-0008I1-HO for qemu-devel@nongnu.org; Thu, 12 Oct 2017 09:17:45 -0400 From: Peter Maydell Date: Thu, 12 Oct 2017 14:17:47 +0100 Message-Id: <1507814267-21400-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH] include/hw/or-irq.h: Drop unused in_irqs field List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, qemu-trivial@nongnu.org Cc: patches@linaro.org, Alistair Francis 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 --- include/hw/or-irq.h | 1 - 1 file changed, 1 deletion(-) 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; }; -- 2.7.4