diff options
author | Joe Richey <joerichey@google.com> | 2019-05-10 16:06:57 +0800 |
---|---|---|
committer | Eric Dong <eric.dong@intel.com> | 2019-05-13 08:45:22 +0800 |
commit | e2aaec4b080c3480d62a259e42d792c92c4a0f1b (patch) | |
tree | a7ebe597ad6f36c0d239f2fa0f93aa8998b143b5 | |
parent | f684c3f5eef4be691e137ae64e7d00521ec201de (diff) | |
download | edk2-e2aaec4b080c3480d62a259e42d792c92c4a0f1b.tar.gz edk2-e2aaec4b080c3480d62a259e42d792c92c4a0f1b.tar.bz2 edk2-e2aaec4b080c3480d62a259e42d792c92c4a0f1b.zip |
UefiCpuPkg: Remove double \r
These files have \r\n line endings, but a few lines use \r\r\n which
is not a valid line ending. These lines were causing problems for git
and other tools.
Signed-off-by: Joe Richey <joerichey@google.com>
Review-by: Eric Dong <eric.dong@intel.com>
Reviewed-by: Ray Ni <ray.ni@intel.com>
-rw-r--r-- | UefiCpuPkg/Library/CpuCommonFeaturesLib/LimitCpuIdMaxval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/LimitCpuIdMaxval.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/LimitCpuIdMaxval.c index 32cd63ede0..906ed65408 100644 --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/LimitCpuIdMaxval.c +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/LimitCpuIdMaxval.c @@ -68,7 +68,7 @@ LimitCpuidMaxvalInitialize ( // The scope of LimitCpuidMaxval bit in the MSR_IA32_MISC_ENABLE is core for below
// processor type, only program MSR_IA32_MISC_ENABLE for thread 0 in each core.
//
- if (IS_PENTIUM_4_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
+ if (IS_PENTIUM_4_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
IS_SILVERMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
IS_GOLDMONT_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
IS_CORE_PROCESSOR (CpuInfo->DisplayFamily, CpuInfo->DisplayModel) ||
|