From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga17.intel.com (mga17.intel.com []) by mx.groups.io with SMTP id smtpd.web10.7259.1588929389103436728 for ; Fri, 08 May 2020 02:16:31 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: guomin.jiang@intel.com) IronPort-SDR: B5rSZ77VbUWaRowa/m/zPvdpxbriPzCJ2gMO6NHAxadMsCLWGdqzfS6q8AdA+M/UHir6femAV0 0Ew1vOLbsG+w== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 May 2020 02:16:31 -0700 IronPort-SDR: w3hLvO4VuhB25sn3bO8puUS+ZuT4aPffnO03ITDKmqdHsljmIaVbkn0ofQ3FPmIIavlNW5RfNq ErsbgMn7QlAQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,367,1583222400"; d="scan'208";a="285316410" Received: from guominji-mobl.ccr.corp.intel.com ([10.238.4.95]) by fmsmga004.fm.intel.com with ESMTP; 08 May 2020 02:16:30 -0700 From: "Guomin Jiang" To: devel@edk2.groups.io Cc: GuoMinJ , Agyeman Prince , Guomin Jiang Subject: [edk2-platforms][PATCH] 2/3] Platform/Intel/SimicsOpenBoardPkg: Fix build error. Date: Fri, 8 May 2020 17:16:20 +0800 Message-Id: <20200508091621.2213-3-guomin.jiang@intel.com> X-Mailer: git-send-email 2.25.1.windows.1 In-Reply-To: <20200508091621.2213-1-guomin.jiang@intel.com> References: <20200508091621.2213-1-guomin.jiang@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: GuoMinJ REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2368 It seem that the '=' expression is unallowed and the value should be hex. Cc: Agyeman Prince Signed-off-by: Guomin Jiang --- Platform/Intel/SimicsOpenBoardPkg/AcpiTables/Dsdt.asl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Platform/Intel/SimicsOpenBoardPkg/AcpiTables/Dsdt.asl b/Platform/Intel/SimicsOpenBoardPkg/AcpiTables/Dsdt.asl index 8a6c3792ba66..43960e3dd524 100644 --- a/Platform/Intel/SimicsOpenBoardPkg/AcpiTables/Dsdt.asl +++ b/Platform/Intel/SimicsOpenBoardPkg/AcpiTables/Dsdt.asl @@ -17,7 +17,7 @@ DefinitionBlock ("Dsdt.aml", "DSDT", 1, "INTEL ", "SIMICS ", 4) { Name (GPIC, Zero) Method (_PIC, 1, NotSerialized) // _PIC: Interrupt Model { - GPIC = Arg0 + Store(Arg0, GPIC) } // // System Bus @@ -372,7 +372,7 @@ DefinitionBlock ("Dsdt.aml", "DSDT", 1, "INTEL ", "SIMICS ", 4) { Package () {0x000EFFFF, 0x00, 0, 16}, Package () {0x000EFFFF, 0x01, 0, 17}, - Package () {0x000EFFFF, 0x02, 0C, 18}, + Package () {0x000EFFFF, 0x02, 0x0C, 18}, Package () {0x000EFFFF, 0x03, 0, 19}, Package () {0x000FFFFF, 0x00, 0, 16}, -- 2.25.1.windows.1