From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: jiewen.yao@intel.com) Received: from mga07.intel.com (mga07.intel.com []) by groups.io with SMTP; Sat, 28 Sep 2019 23:16:24 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 28 Sep 2019 23:16:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,562,1559545200"; d="scan'208";a="189910267" Received: from jyao1-mobl2.ccr.corp.intel.com ([10.254.212.144]) by fmsmga008.fm.intel.com with ESMTP; 28 Sep 2019 23:16:23 -0700 From: "Yao, Jiewen" To: devel@edk2.groups.io Cc: Michael D Kinney , Liming Gao Subject: [PATCH 1/3] MdePkg/Include: correct Lasa in Tpm2Acpi. Date: Sun, 29 Sep 2019 14:15:56 +0800 Message-Id: <20190929061558.22512-2-jiewen.yao@intel.com> X-Mailer: git-send-email 2.19.2.windows.1 In-Reply-To: <20190929061558.22512-1-jiewen.yao@intel.com> References: <20190929061558.22512-1-jiewen.yao@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Correct Lasa according to TCG ACPI spec. Cc: Michael D Kinney Cc: Liming Gao Signed-off-by: Jiewen Yao --- MdePkg/Include/IndustryStandard/Tpm2Acpi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MdePkg/Include/IndustryStandard/Tpm2Acpi.h b/MdePkg/Include/IndustryStandard/Tpm2Acpi.h index b75f025f03..3ed6834cc9 100644 --- a/MdePkg/Include/IndustryStandard/Tpm2Acpi.h +++ b/MdePkg/Include/IndustryStandard/Tpm2Acpi.h @@ -27,7 +27,7 @@ typedef struct { UINT32 StartMethod; //UINT8 PlatformSpecificParameters[]; // size up to 12 //UINT32 Laml; // Optional -//UINT32 Lasa; // Optional +//UINT64 Lasa; // Optional } EFI_TPM2_ACPI_TABLE; #define EFI_TPM2_ACPI_TABLE_START_METHOD_ACPI 2 -- 2.19.2.windows.1