diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2004-03-22 04:24:29 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2004-03-22 04:24:29 +0000 |
commit | bfdc56231b91b8a2d8a40d87821dd6d0d8392515 (patch) | |
tree | d26c1f57e567e5e0500a50a9f7e57dbc95ff27ef /src | |
parent | 7ebb9e9eb87ffb400aa09430c582b1a51b7fc5c7 (diff) | |
download | coreboot-bfdc56231b91b8a2d8a40d87821dd6d0d8392515.tar.xz |
return to debug
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1461 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/ram/ramtest.c | 12 |
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"); } |