summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Fan <jeff.fan@intel.com>2016-07-12 22:08:58 +0800
committerJeff Fan <jeff.fan@intel.com>2016-07-20 11:12:20 +0800
commit9fc34794d60d4922bcac10efc7ed57f827720e92 (patch)
tree28bf98e9b1ef984c0d19d5f759f970099cea82bb
parent95fc5a877502a6e6324300eed0136243d359fa96 (diff)
downloadedk2-9fc34794d60d4922bcac10efc7ed57f827720e92.tar.gz
edk2-9fc34794d60d4922bcac10efc7ed57f827720e92.tar.bz2
edk2-9fc34794d60d4922bcac10efc7ed57f827720e92.zip
UefiCpuPkg/MtrrLib: Remove MTRRs display from MtrrSetAllMtrrs()
MtrrSetAllMtrrs() maybe used by APs to sync BSP's MTRR settings. BSP's MTRR setting should be displayed if EFI_D_CACHE flag is set when MTRR updated. In MtrrSetAllMtrrs(), it's not necessary to display MTRR setting again due to the MTRR settings should be always same among BSP/APs. This updating could avoid APs output MTRR setting at the same time and make display message corrupted. Cc: Feng Tian <feng.tian@intel.com> Cc: Michael Kinney <michael.d.kinney@intel.com> Cc: Laszlo Ersek <lersek@redhat.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jeff Fan <jeff.fan@intel.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Michael Kinney <michael.d.kinney@intel.com>
-rw-r--r--UefiCpuPkg/Library/MtrrLib/MtrrLib.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/UefiCpuPkg/Library/MtrrLib/MtrrLib.c b/UefiCpuPkg/Library/MtrrLib/MtrrLib.c
index 6a6bf765c2..f667a8f796 100644
--- a/UefiCpuPkg/Library/MtrrLib/MtrrLib.c
+++ b/UefiCpuPkg/Library/MtrrLib/MtrrLib.c
@@ -2103,8 +2103,6 @@ MtrrSetAllMtrrs (
PostMtrrChangeEnableCache (&MtrrContext);
- MtrrDebugPrintAllMtrrs ();
-
return MtrrSetting;
}