From: Cédric Le Goater Date: Thu, 14 Jul 2016 15:51:38 +0000 (+0100) Subject: hw/misc: fix typo in Aspeed SCU hw-strap2 property name X-Git-Tag: qemu-xen-4.8.0-rc1~113^2~3 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=2ddfa2817b7f2be4f7ef0fd4806e06aaced9e6ac;p=qemu-xen.git hw/misc: fix typo in Aspeed SCU hw-strap2 property name Signed-off-by: Cédric Le Goater Message-id: 1467994016-11678-2-git-send-email-clg@kaod.org Reviewed-by: Peter Maydell Signed-off-by: Peter Maydell --- diff --git a/hw/misc/aspeed_scu.c b/hw/misc/aspeed_scu.c index 23f51752b0..b61c05ea4d 100644 --- a/hw/misc/aspeed_scu.c +++ b/hw/misc/aspeed_scu.c @@ -255,7 +255,7 @@ static const VMStateDescription vmstate_aspeed_scu = { static Property aspeed_scu_properties[] = { 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(), };