From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mx.groups.io with SMTP id smtpd.web11.18222.1677828406348296460 for ; Thu, 02 Mar 2023 23:26:49 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=MWadk2zU; spf=pass (domain: intel.com, ip: 192.55.52.88, mailfrom: dun.tan@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1677828409; x=1709364409; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=zr1MtbAeWgDtcKifrjfRlaEWJOG5ScPoOTNdS8Ubwyk=; b=MWadk2zU+gQE+nfAG9/U9jquNTFXxrKaBADwim1boQ6SKbSOCJhNDuHw EqZU+QAh3Wujzfr4MGqpxoi1CkD4vxc+9RZghU2afGN7tZqpNrJqMdX/+ 6Y5I9HVvTFiE9Pei3SMOQT1BKQw5jJ4amP7FbxW5j9MNBMTm87Y7QnIF9 xj156bmsVHsweCYdRX3doU9Q+WrqinCVcTuxHG/0NXUS7iAU/TQjf3nVi TcpPeQPv7iIe+wq5EgHCya65Q9IYjlOVuOOTiMVo1RU1siBOrcd6pVKQD 81ANoAz4QwDZztTDf9CUMsMFLwKA0CGji2e6fiadq5kEYYeP9N/rgV/Y8 Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10637"; a="362574454" X-IronPort-AV: E=Sophos;i="5.98,229,1673942400"; d="scan'208";a="362574454" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Mar 2023 23:26:49 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10637"; a="739401320" X-IronPort-AV: E=Sophos;i="5.98,229,1673942400"; d="scan'208";a="739401320" Received: from shwdeopenlab702.ccr.corp.intel.com ([10.239.55.92]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Mar 2023 23:26:47 -0800 From: "duntan" To: devel@edk2.groups.io Cc: Michael D Kinney , Liming Gao , Zhiguang Liu , Ray Ni Subject: [PATCH 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure Date: Fri, 3 Mar 2023 15:26:28 +0800 Message-Id: <20230303072629.1781-2-dun.tan@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: <20230303072629.1781-1-dun.tan@intel.com> References: <20230303072629.1781-1-dun.tan@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit modify the wrong 'AcpiId' to 'ApicId' of MpWakeupStructure defination in Acpi64.h. Signed-off-by: Dun Tan Cc: Michael D Kinney Cc: Liming Gao Cc: Zhiguang Liu Cc: Ray Ni --- MdePkg/Include/IndustryStandard/Acpi64.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MdePkg/Include/IndustryStandard/Acpi64.h b/MdePkg/Include/IndustryStandard/Acpi64.h index 575ca0430c..16c2faaaf2 100644 --- a/MdePkg/Include/IndustryStandard/Acpi64.h +++ b/MdePkg/Include/IndustryStandard/Acpi64.h @@ -607,7 +607,7 @@ typedef struct { typedef struct { UINT16 Command; UINT16 Reserved; - UINT32 AcpiId; + UINT32 ApicId; UINT64 WakeupVector; UINT8 ReservedForOs[2032]; UINT8 ReservedForFirmware[2048]; -- 2.31.1.windows.1