From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40023) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bXnKG-0002xw-DK for qemu-devel@nongnu.org; Thu, 11 Aug 2016 06:35:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bXnKE-000285-Fv for qemu-devel@nongnu.org; Thu, 11 Aug 2016 06:34:59 -0400 Received: from mail-ua0-x236.google.com ([2607:f8b0:400c:c08::236]:35787) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bXnKE-00027y-BV for qemu-devel@nongnu.org; Thu, 11 Aug 2016 06:34:58 -0400 Received: by mail-ua0-x236.google.com with SMTP id n59so111958829uan.2 for ; Thu, 11 Aug 2016 03:34:58 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <1470158147-16378-10-git-send-email-clg@kaod.org> References: <1470158147-16378-1-git-send-email-clg@kaod.org> <1470158147-16378-10-git-send-email-clg@kaod.org> From: Peter Maydell Date: Thu, 11 Aug 2016 11:34:37 +0100 Message-ID: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v3 09/10] arm: add support for an ast2500 evaluation board List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?Q?C=C3=A9dric_Le_Goater?= Cc: QEMU Developers , qemu-arm , Andrew Jeffery On 2 August 2016 at 18:15, C=C3=A9dric Le Goater wrote: > The ast2500 eval board has a hardware strapping register value of > 0xF100C2E6 which we use for a definition of AST2500_EVB_HW_STRAP1 > below. > > Signed-off-by: C=C3=A9dric Le Goater > --- > > Changes since v2: > > - removed silicon-rev and cpu-model. This is now in the SoC. > > Changes since v1: > > - changed AST2500_EDK to AST2500_EVB > - fixed white space issues > - added AST2500_HW_STRAP1 > > hw/arm/aspeed.c | 39 ++++++++++++++++++++++++++++++++++++++- > 1 file changed, 38 insertions(+), 1 deletion(-) > > diff --git a/hw/arm/aspeed.c b/hw/arm/aspeed.c > index 80907b4244ea..e71500c64bd3 100644 > --- a/hw/arm/aspeed.c > +++ b/hw/arm/aspeed.c > @@ -36,7 +36,8 @@ typedef struct AspeedBoardConfig { > } AspeedBoardConfig; > > enum { > - PALMETTO_BMC > + PALMETTO_BMC, > + AST2500_EVB Prefer trailing comma. > }; Otherwise Reviewed-by: Peter Maydell thanks -- PMM