From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mx.groups.io with SMTP id smtpd.web10.4895.1678331566144942741 for ; Wed, 08 Mar 2023 19:12:49 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=RccDEKjz; spf=pass (domain: intel.com, ip: 192.55.52.115, 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=1678331569; x=1709867569; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Jl7HrP+WNLABO7apthUb6Jm36RfTPS70TgYa68evNG4=; b=RccDEKjzDgWEHGAh8fBbINmqL9l1ugLxwCT6BT6iNMdYkiBeCKKWQJD9 U1XOOVLlViM9QYIlwgvgPOd02iAp5GPNtIIl4mFG53quj7lPgVGCOizsj DSUyS32ftTKzWwUVkRs45tHlUqDEs4PFQWg+9cldLAT40W9hd6CPybYcz ZlZSmQSvfjv6tZW5zf4OVAi8C8bFh6on/TVRSP+B9+b8XNYzchXHmJf7J Kl7VS0je46AjyRX5ybcCICudwp4LYeanh8mu4YC8KU2TlUlke/lSsrCAe j2Xw2bzHSKLFZ+I6+mHyqU9dkTJAGUblaHHRnmrT1vMzNjtJtFpcOEs12 g==; X-IronPort-AV: E=McAfee;i="6500,9779,10643"; a="336357227" X-IronPort-AV: E=Sophos;i="5.98,245,1673942400"; d="scan'208";a="336357227" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Mar 2023 19:12:49 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10643"; a="741379935" X-IronPort-AV: E=Sophos;i="5.98,245,1673942400"; d="scan'208";a="741379935" 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; 08 Mar 2023 19:12:47 -0800 From: "duntan" To: devel@edk2.groups.io Cc: Michael D Kinney , Liming Gao , Zhiguang Liu Subject: [Patch V2 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure Date: Thu, 9 Mar 2023 11:12:28 +0800 Message-Id: <20230309031229.848-2-dun.tan@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: <20230309031229.848-1-dun.tan@intel.com> References: <20230309031229.848-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 Reviewed-by: Zhiguang Liu --- 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 fe5ebfac2b..bfd022b6b6 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