aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/amd/norwich/failover.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/amd/norwich/failover.c')
-rw-r--r--src/mainboard/amd/norwich/failover.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/mainboard/amd/norwich/failover.c b/src/mainboard/amd/norwich/failover.c
index 29d24cadbf..dabee48579 100644
--- a/src/mainboard/amd/norwich/failover.c
+++ b/src/mainboard/amd/norwich/failover.c
@@ -8,24 +8,5 @@
static unsigned long main(unsigned long bist)
{
-#if 0
- /* This is the primary cpu how should I boot? */
- if (do_normal_boot()) {
- goto normal_image;
- } else {
- goto fallback_image;
- }
- normal_image:
- asm volatile ("jmp __normal_image": /* outputs */
- :"a" (bist) /* inputs */
- : /* clobbers */
- );
- cpu_reset:
- asm volatile ("jmp __cpu_reset": /* outputs */
- :"a" (bist) /* inputs */
- : /* clobbers */
- );
- fallback_image:
-#endif
return bist;
}