diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2004-03-22 04:23:57 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2004-03-22 04:23:57 +0000 |
commit | 7ebb9e9eb87ffb400aa09430c582b1a51b7fc5c7 (patch) | |
tree | cdc3c5b07662fe2cb4d3cced0bef7d22e71e230c /src/ram | |
parent | 132f2c49003a647c3d063de0efe42a2ed64fc3b3 (diff) |
updates for the E325
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1460 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/ram')
-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 af77fcc386..e38787d867 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_debug("Testing DRAM : "); - print_debug_hex32(start); - print_debug("-"); - print_debug_hex32(stop); - print_debug("\r\n"); + print_err("Testing DRAM : "); + print_err_hex32(start); + print_err("-"); + print_err_hex32(stop); + print_err("\r\n"); ram_fill(start, stop); ram_verify(start, stop); - print_debug("Done.\r\n"); + print_err("Done.\r\n"); } |