Drop per-board ram_check() calls for now.
[coreboot.git] / src / mainboard / iei / juki-511p / romstage.c
index 96e027872aa4c027226e22fef6cba4d3731fa632..a5019ce0954e67f47054b3e2f29e65dc68f4f2e1 100644 (file)
@@ -25,7 +25,6 @@
 #include <arch/romcc_io.h>
 #include <arch/hlt.h>
 #include <console/console.h>
-#include "lib/ramtest.c"
 #include "superio/winbond/w83977f/w83977f_early_serial.c"
 #include "southbridge/amd/cs5530/cs5530_enable_rom.c"
 #include "cpu/x86/bist.h"
 
 static void main(unsigned long bist)
 {
-       /* Initialize the serial console. */
        w83977f_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
        uart_init();
        console_init();
-
-       /* Halt if there was a built in self test failure. */
        report_bist_failure(bist);
 
        /* Disable Watchdog Timer. */
@@ -49,10 +45,5 @@ static void main(unsigned long bist)
        inb(0x843);
 
        cs5530_enable_rom();
-
-       /* Initialize RAM. */
        sdram_init();
-
-       /* Check RAM. */
-       /* ram_check(0x00000000, 640 * 1024); */
 }