aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/x86/mtrr
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2012-06-06 13:46:26 -0700
committerRonald G. Minnich <rminnich@gmail.com>2012-07-24 02:37:06 +0200
commit00671887398a8266f65278318e570cb2a0cf079c (patch)
tree53937b3efeb9f264ac79a903ea8832ec45e0f289 /src/cpu/x86/mtrr
parent79431f5f09fa9505303e37d6b1c393dce20b4e23 (diff)
MTRR: drop repetetive debug message
It's not really useful anymore I guess, and it makes the log files harder to read. Hence dropping it. Change-Id: If4c3e8b40ae491ca527ef62f8145206960f6579d Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/1272 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/cpu/x86/mtrr')
-rw-r--r--src/cpu/x86/mtrr/mtrr.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cpu/x86/mtrr/mtrr.c b/src/cpu/x86/mtrr/mtrr.c
index 77fdb6f5b3..fdc7aa6054 100644
--- a/src/cpu/x86/mtrr/mtrr.c
+++ b/src/cpu/x86/mtrr/mtrr.c
@@ -114,8 +114,6 @@ static void set_var_mtrr(
base.hi = basek >> 22;
base.lo = basek << 10;
- printk(BIOS_SPEW, "ADDRESS_MASK_HIGH=%#x\n", address_mask_high);
-
if (sizek < 4*1024*1024) {
mask.hi = address_mask_high;
mask.lo = ~((sizek << 10) -1);