From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 9575A1A1DEC for ; Tue, 20 Sep 2016 01:34:15 -0700 (PDT) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga101.jf.intel.com with ESMTP; 20 Sep 2016 01:34:15 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,366,1470726000"; d="scan'208";a="11204138" Received: from jfan12-desk.ccr.corp.intel.com ([10.239.9.5]) by fmsmga005.fm.intel.com with ESMTP; 20 Sep 2016 01:34:14 -0700 From: Jeff Fan To: edk2-devel@ml01.01.org Cc: Michael Kinney , Feng Tian Date: Tue, 20 Sep 2016 16:29:10 +0800 Message-Id: <20160920082911.6908-3-jeff.fan@intel.com> X-Mailer: git-send-email 2.9.3.windows.2 In-Reply-To: <20160920082911.6908-1-jeff.fan@intel.com> References: <20160920082911.6908-1-jeff.fan@intel.com> Subject: [Patch 2/3] UefiCpuPkg/SecCore: Fix comment typo X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Sep 2016 08:34:15 -0000 Revert SecPlatformInformation2 and SecPlatformInformation in two comment blocks. And correct the words. Cc: Michael Kinney Cc: Feng Tian Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jeff Fan --- UefiCpuPkg/SecCore/SecBist.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/UefiCpuPkg/SecCore/SecBist.c b/UefiCpuPkg/SecCore/SecBist.c index dd5c5e5..19f3492 100644 --- a/UefiCpuPkg/SecCore/SecBist.c +++ b/UefiCpuPkg/SecCore/SecBist.c @@ -230,9 +230,9 @@ RepublishSecPlatformInformationPpi ( (UINTN) BistInformationSize ); // - // The old SecPlatformInformation data is on CAR. - // After memory discovered, we should never get it from CAR, or the data will be crashed. - // So, we reinstall SecPlatformInformation PPI here. + // The old SecPlatformInformation2 data is on temporary memory. + // After memory discovered, we should never get it from temporary memory, + // or the data will be crashed. So, we reinstall SecPlatformInformation2 PPI here. // Status = PeiServicesReInstallPpi ( SecInformationDescriptor, @@ -253,9 +253,9 @@ RepublishSecPlatformInformationPpi ( (UINTN) BistInformationSize ); // - // The old SecPlatformInformation2 data is on CAR. - // After memory discovered, we should never get it from CAR, or the data will be crashed. - // So, we reinstall SecPlatformInformation2 PPI here. + // The old SecPlatformInformation data is on temporary memory. + // After memory discovered, we should never get it from temporary memory, + // or the data will be crashed. So, we reinstall SecPlatformInformation PPI here. // Status = PeiServicesReInstallPpi ( SecInformationDescriptor, -- 2.9.3.windows.2