diff options
author | Jeff Fan <jeff.fan@intel.com> | 2016-09-20 16:08:28 +0800 |
---|---|---|
committer | Jeff Fan <jeff.fan@intel.com> | 2016-09-21 14:12:45 +0800 |
commit | 030d2de7c7a8682837be168bbaf7f27739a8fff0 (patch) | |
tree | c96a032a6696051336fe45f3e55728147ea4b254 /UefiCpuPkg | |
parent | 26ea0da235fe4082ef338f37d7ac292ce259c586 (diff) | |
download | edk2-platforms-030d2de7c7a8682837be168bbaf7f27739a8fff0.tar.xz |
UefiCpuPkg/SecCore: Fix comment typo
Revert SecPlatformInformation2 and SecPlatformInformation in two comment blocks.
And correct the words.
Cc: Michael Kinney <michael.d.kinney@intel.com>
Cc: Feng Tian <feng.tian@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jeff Fan <jeff.fan@intel.com>
Reviewed-by: Michael Kinney <michael.d.kinney@intel.com>
Diffstat (limited to 'UefiCpuPkg')
-rw-r--r-- | UefiCpuPkg/SecCore/SecBist.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/UefiCpuPkg/SecCore/SecBist.c b/UefiCpuPkg/SecCore/SecBist.c index dd5c5e5eda..19f34925a1 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,
|