diff options
author | Ruiyu Ni <ruiyu.ni@intel.com> | 2016-08-18 15:34:54 +0800 |
---|---|---|
committer | Ruiyu Ni <ruiyu.ni@intel.com> | 2017-03-31 13:57:30 +0800 |
commit | 341fea6438482458f23d41c27cf710e0096ebb96 (patch) | |
tree | 71c23c1a35cc14bd48e54d9cfeee4171dfe431cb | |
parent | de87f23291620d36d69ec55ea53a1c38b8780f0b (diff) | |
download | edk2-341fea6438482458f23d41c27cf710e0096ebb96.zip edk2-341fea6438482458f23d41c27cf710e0096ebb96.tar.gz edk2-341fea6438482458f23d41c27cf710e0096ebb96.tar.bz2 |
UefiCpuPkg/MtrrLib: Correct typo in comments and remove TABs
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Reviewed-by: Jeff Fan <jeff.fan@intel.com>
-rw-r--r-- | UefiCpuPkg/Include/Library/MtrrLib.h | 14 | ||||
-rw-r--r-- | UefiCpuPkg/Library/MtrrLib/MtrrLib.c | 6 |
2 files changed, 10 insertions, 10 deletions
diff --git a/UefiCpuPkg/Include/Library/MtrrLib.h b/UefiCpuPkg/Include/Library/MtrrLib.h index 4973d84..c37e776 100644 --- a/UefiCpuPkg/Include/Library/MtrrLib.h +++ b/UefiCpuPkg/Include/Library/MtrrLib.h @@ -1,7 +1,7 @@ /** @file
MTRR setting library
- Copyright (c) 2008 - 2015, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2008 - 2017, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -16,7 +16,7 @@ #define _MTRR_LIB_H_
//
-// According to IA32 SDM, MTRRs number and msr offset are always consistent
+// According to IA32 SDM, MTRRs number and MSR offset are always consistent
// for IA32 processor family
//
@@ -92,11 +92,11 @@ typedef struct _MTRR_VARIABLE_SETTING_ { // Array for variable MTRRs
//
typedef struct _MTRR_VARIABLE_SETTINGS_ {
- MTRR_VARIABLE_SETTING Mtrr[MTRR_NUMBER_OF_VARIABLE_MTRR];
-} MTRR_VARIABLE_SETTINGS;
+ MTRR_VARIABLE_SETTING Mtrr[MTRR_NUMBER_OF_VARIABLE_MTRR];
+} MTRR_VARIABLE_SETTINGS;
//
-// Array for fixed mtrrs
+// Array for fixed MTRRs
//
typedef struct _MTRR_FIXED_SETTINGS_ {
UINT64 Mtrr[MTRR_NUMBER_OF_FIXED_MTRR];
@@ -209,7 +209,7 @@ MtrrGetMemoryAttribute ( @param[out] VariableSettings A buffer to hold variable MTRRs content.
- @return The buffer point to MTRR_VARIABLE_SETTINGS in which holds the content of the variable mtrr
+ @return The buffer point to MTRR_VARIABLE_SETTINGS in which holds the content of the variable MTRR
**/
MTRR_VARIABLE_SETTINGS*
@@ -220,7 +220,7 @@ MtrrGetVariableMtrr ( /**
- This function sets fixed MTRRs
+ This function sets variable MTRRs
@param[in] VariableSettings A buffer to hold variable MTRRs content.
diff --git a/UefiCpuPkg/Library/MtrrLib/MtrrLib.c b/UefiCpuPkg/Library/MtrrLib/MtrrLib.c index 7783b63..547f827 100644 --- a/UefiCpuPkg/Library/MtrrLib/MtrrLib.c +++ b/UefiCpuPkg/Library/MtrrLib/MtrrLib.c @@ -5,7 +5,7 @@ Most of services in this library instance are suggested to be invoked by BSP only,
except for MtrrSetAllMtrrs() which is used to sync BSP's MTRR setting to APs.
- Copyright (c) 2008 - 2016, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2008 - 2017, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -786,7 +786,7 @@ CombineMemoryAttribute ( continue;
} else {
//
- // The cache type is different, but the range is convered by one MTRR
+ // The cache type is different, but the range is covered by one MTRR
//
if (VariableMtrr[Index].BaseAddress == *Base && MtrrEnd == EndAddress) {
InvalidateShadowMtrr (Index, VariableMtrr, UsedMtrr);
@@ -1278,7 +1278,7 @@ MtrrGetMemoryAttribute ( /**
Worker function prints all MTRRs for debugging.
- If MtrrSetting is not NULL, print MTRR settings from from input MTRR
+ If MtrrSetting is not NULL, print MTRR settings from input MTRR
settings buffer.
If MtrrSetting is NULL, print MTRR settings from MTRRs.
|