updates for the E325

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1460 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Ronald G. Minnich
2004-03-22 04:23:57 +00:00
parent 132f2c4900
commit 7ebb9e9eb8
4 changed files with 17 additions and 13 deletions

View File

@@ -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");
}