aboutsummaryrefslogtreecommitdiff
path: root/src/ram
diff options
context:
space:
mode:
authorRonald G. Minnich <rminnich@gmail.com>2004-03-22 04:24:29 +0000
committerRonald G. Minnich <rminnich@gmail.com>2004-03-22 04:24:29 +0000
commitbfdc56231b91b8a2d8a40d87821dd6d0d8392515 (patch)
treed26c1f57e567e5e0500a50a9f7e57dbc95ff27ef /src/ram
parent7ebb9e9eb87ffb400aa09430c582b1a51b7fc5c7 (diff)
return to debug
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1461 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/ram')
-rw-r--r--src/ram/ramtest.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ram/ramtest.c b/src/ram/ramtest.c
index e38787d867..af77fcc386 100644
--- a/src/ram/ramtest.c
+++ b/src/ram/ramtest.c
@@ -93,13 +93,13 @@ void ram_check(unsigned long start, unsigned long stop)
* test than a "Is my DRAM faulty?" test. Not all bits
* are tested. -Tyson
*/
- print_err("Testing DRAM : ");
- print_err_hex32(start);
- print_err("-");
- print_err_hex32(stop);
- print_err("\r\n");
+ print_debug("Testing DRAM : ");
+ print_debug_hex32(start);
+ print_debug("-");
+ print_debug_hex32(stop);
+ print_debug("\r\n");
ram_fill(start, stop);
ram_verify(start, stop);
- print_err("Done.\r\n");
+ print_debug("Done.\r\n");
}