From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36827) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bIeEq-0005GQ-49 for qemu-devel@nongnu.org; Thu, 30 Jun 2016 11:50:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bIeEk-0006S0-5f for qemu-devel@nongnu.org; Thu, 30 Jun 2016 11:50:47 -0400 Received: from 10.mo6.mail-out.ovh.net ([87.98.157.236]:55635) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bIeEj-0006Rm-U3 for qemu-devel@nongnu.org; Thu, 30 Jun 2016 11:50:42 -0400 Received: from player795.ha.ovh.net (b9.ovh.net [213.186.33.59]) by mo6.mail-out.ovh.net (Postfix) with ESMTP id D17F5FFBFF5 for ; Thu, 30 Jun 2016 17:50:40 +0200 (CEST) From: =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= Date: Thu, 30 Jun 2016 17:50:23 +0200 Message-Id: <1467301824-10123-1-git-send-email-clg@kaod.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 1/2] hw/misc: fix Aspeed SCU hw-strap2 property List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: qemu-devel@nongnu.org, qemu-arm@nongnu.org, Andrew Jeffery , =?UTF-8?q?C=C3=A9dric=20Le=20Goater?= These strap registers are complex enough, let's not mix them. Signed-off-by: C=C3=A9dric Le Goater --- hw/misc/aspeed_scu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/misc/aspeed_scu.c b/hw/misc/aspeed_scu.c index 4f9df581e70a..14b2d75e6049 100644 --- a/hw/misc/aspeed_scu.c +++ b/hw/misc/aspeed_scu.c @@ -254,7 +254,7 @@ static const VMStateDescription vmstate_aspeed_scu =3D= { static Property aspeed_scu_properties[] =3D { DEFINE_PROP_UINT32("silicon-rev", AspeedSCUState, silicon_rev, 0), DEFINE_PROP_UINT32("hw-strap1", AspeedSCUState, hw_strap1, 0), - DEFINE_PROP_UINT32("hw-strap2", AspeedSCUState, hw_strap1, 0), + DEFINE_PROP_UINT32("hw-strap2", AspeedSCUState, hw_strap2, 0), DEFINE_PROP_END_OF_LIST(), }; =20 --=20 2.1.4