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.web10.5358.1678333299881048135 for ; Wed, 08 Mar 2023 19:41:39 -0800 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=D9BpBM94; 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=1678333299; x=1709869299; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Jl7HrP+WNLABO7apthUb6Jm36RfTPS70TgYa68evNG4=; b=D9BpBM94QgAcRblEmLWwQWrJWkMgN2MZbpZ3unxxKrMr+8CgHdw+TdIf uUpgvT+P3poEwWuCRxoQox4n1FGx36RaPLcXgGuzAlpJ+isjfoBVFtFJ+ P+RbU4/DfmJ8E0CV+JP3N+mDcCoxtrZViSL8m7S7532C8Vt/iHa1bt3cn EoQTla23ujvCWg+/e55T6guR9XQZiSKEB4sViQGV92UCE3eSA9bX9waYr ABnLPNKLa8H21cmAn3TW1VMmmxspeiKTHx+RDC9vaiG3rgzQcFA3uhdjj G/Gzm7hGNU0H8sIWN+yfNeKRV52D/9KRIgMNIFVHw4dWxtNiYrdV9Mjm/ g==; X-IronPort-AV: E=McAfee;i="6500,9779,10643"; a="363980162" X-IronPort-AV: E=Sophos;i="5.98,245,1673942400"; d="scan'208";a="363980162" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Mar 2023 19:41:39 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10643"; a="787403283" X-IronPort-AV: E=Sophos;i="5.98,245,1673942400"; d="scan'208";a="787403283" Received: from shwdeopenlab702.ccr.corp.intel.com ([10.239.55.92]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Mar 2023 19:41:38 -0800 From: "duntan" To: devel@edk2.groups.io Cc: Michael D Kinney , Liming Gao , Zhiguang Liu Subject: [Patch V3 1/2] MdePkg: modify the wrong 'AcpiId' to 'ApicId' in MpWakeupStructure Date: Thu, 9 Mar 2023 11:40:04 +0800 Message-Id: <20230309034005.927-2-dun.tan@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: <20230309034005.927-1-dun.tan@intel.com> References: <20230309034005.927-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