aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mm/init_64.c
diff options
context:
space:
mode:
authorYinghai Lu <yhlu.kernel.send@gmail.com>2008-04-16 02:17:42 -0400
committerIngo Molnar <mingo@elte.hu>2008-04-17 11:41:21 -0400
commitdcfe946520719943fabd3e5ed13813956e48e37c (patch)
treeafb56ce7f6b12cf913ed7f74e9ae7b9e6f9e7f48 /arch/x86/mm/init_64.c
parentc64df70793a9c344874eb4af19f85e0662d2d3ee (diff)
x86: fix memtest print out
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mm/init_64.c')
-rw-r--r--arch/x86/mm/init_64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c
index ae225c3ae9a8..210243e94d84 100644
--- a/arch/x86/mm/init_64.c
+++ b/arch/x86/mm/init_64.c
@@ -473,7 +473,7 @@ static void __init memtest(unsigned long start_phys, unsigned long size,
473 last_bad += incr; 473 last_bad += incr;
474 } else { 474 } else {
475 if (start_bad) { 475 if (start_bad) {
476 printk(KERN_INFO " %016lxx bad mem addr %016lx - %016lx reserved\n", 476 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
477 val, start_bad, last_bad + incr); 477 val, start_bad, last_bad + incr);
478 reserve_early(start_bad, last_bad - start_bad, "BAD RAM"); 478 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
479 } 479 }
@@ -482,7 +482,7 @@ static void __init memtest(unsigned long start_phys, unsigned long size,
482 } 482 }
483 } 483 }
484 if (start_bad) { 484 if (start_bad) {
485 printk(KERN_INFO " %016lx bad mem addr %016lx - %016lx reserved\n", 485 printk(KERN_CONT "\n %016lx bad mem addr %016lx - %016lx reserved",
486 val, start_bad, last_bad + incr); 486 val, start_bad, last_bad + incr);
487 reserve_early(start_bad, last_bad - start_bad, "BAD RAM"); 487 reserve_early(start_bad, last_bad - start_bad, "BAD RAM");
488 } 488 }