Drop per-board ram_check() calls for now.
[coreboot.git] / src / mainboard / televideo / tc7020 / romstage.c
index 05174495c6120afd8f1e68fa7cad900bd3ab1e8c..f5eeab3c296b560de904d9cf9b7158fb63a92234 100644 (file)
@@ -24,9 +24,7 @@
 #include <device/pnp_def.h>
 #include <arch/romcc_io.h>
 #include <arch/hlt.h>
-#include "pc80/serial.c"
 #include <console/console.h>
-#include "lib/ramtest.c"
 #include "northbridge/amd/gx1/raminit.c"
 #include "superio/nsc/pc97317/pc97317_early_serial.c"
 #include "cpu/x86/bist.h"
 
 static void main(unsigned long bist)
 {
-       /* Initialize the serial console. */
        pc97317_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);
-
        cs5530_enable_rom();
-
-       /* Initialize RAM. */
        sdram_init();
-
-       /* Check whether RAM works. */
-       /* ram_check(0, 640 * 1024); */
 }
-