From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53661) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aQI95-0004f3-Sl for qemu-devel@nongnu.org; Mon, 01 Feb 2016 12:20:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aQI92-0002o2-RY for qemu-devel@nongnu.org; Mon, 01 Feb 2016 12:20:11 -0500 From: Wei Huang Date: Mon, 1 Feb 2016 12:20:06 -0500 Message-Id: <1454347206-23717-2-git-send-email-wei@redhat.com> In-Reply-To: <1454347206-23717-1-git-send-email-wei@redhat.com> References: <1454347206-23717-1-git-send-email-wei@redhat.com> Subject: [Qemu-devel] [PATCH 2/2] ARM: PL061: Misc cleaning fields for PL061 device state List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, peter.maydell@linaro.org, imammedo@redhat.com, shannon.zhao@linaro.org, zhaoshenglong@huawei.com This patch removes float_high field of PL061State, which doesn't seem to be used anywhere. Signed-off-by: Wei Huang --- hw/gpio/pl061.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/hw/gpio/pl061.c b/hw/gpio/pl061.c index 342a70d..2c08e88 100644 --- a/hw/gpio/pl061.c +++ b/hw/gpio/pl061.c @@ -56,7 +56,6 @@ typedef struct PL061State { uint32_t slr; uint32_t den; uint32_t cr; - uint32_t float_high; uint32_t amsel; qemu_irq irq; qemu_irq out[8]; @@ -88,7 +87,6 @@ static const VMStateDescription vmstate_pl061 = { VMSTATE_UINT32(slr, PL061State), VMSTATE_UINT32(den, PL061State), VMSTATE_UINT32(cr, PL061State), - VMSTATE_UINT32(float_high, PL061State), VMSTATE_UINT32_V(amsel, PL061State, 2), VMSTATE_END_OF_LIST() } -- 1.8.3.1