Drop per-board ram_check() calls for now.
[coreboot.git] / src / mainboard / technologic / ts5300 / romstage.c
index 39d3940246b79cdfc51e313172fd41a2fd9ff9d1..ff296ec23ecca25f94b6b58487ed862c09a07aec 100644 (file)
 #include <device/pnp_def.h>
 #include <arch/romcc_io.h>
 #include <arch/hlt.h>
-#include "pc80/mc146818rtc_early.c"
-#include "pc80/serial.c"
+#include <pc80/mc146818rtc.h>
 #include <console/console.h>
-#include "lib/ramtest.c"
 #include "cpu/x86/bist.h"
 
 #define TS5300_LED_OFF outb((inb(0x77)&0xfe), 0x77)
@@ -131,7 +129,6 @@ static void identify_system(void)
        val=inb(0x19d);
        if(val==0x5f)
                identify_ts9500();
-
 }
 
 static void hard_reset(void)
@@ -164,13 +161,5 @@ static void main(unsigned long bist)
        identify_system();
 #endif
 
-#if 0
-       // Check 32MB of memory @ 0 (very slow!)
-       print_err("Checking memory:\n");
-       ram_check(0x00000000, 0x000a0000);
-       ram_check(0x000b0000, 0x02000000);
-#endif
-
        TS5300_LED_OFF;
 }
-