Remove fallback/normal handling in mainboards'
[coreboot.git] / src / mainboard / emulation / qemu-x86 / failover.c
index 6caba226983aa24824a5e4cb60bbc7ac6e5f36a1..c018d78f2541b8c9e04989f394a90c3e7c83cce4 100644 (file)
 
 static void main(void)
 {
-#if 0
-       /* Is this a cpu reset? */
-       if (cpu_init_detected()) {
-               if (last_boot_normal()) {
-                       asm("jmp __normal_image");
-               } else {
-                       asm("jmp __cpu_reset");
-               }
-       }
-
-       /* This is the primary cpu how should I boot? */
-       else if (do_normal_boot()) {
-               asm("jmp __normal_image");
-       }
-#endif
 }