aboutsummaryrefslogtreecommitdiff
path: root/src/soc/broadcom/cygnus/verstage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/broadcom/cygnus/verstage.c')
-rw-r--r--src/soc/broadcom/cygnus/verstage.c12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/soc/broadcom/cygnus/verstage.c b/src/soc/broadcom/cygnus/verstage.c
index b5ec27ff73..6b166cb9a7 100644
--- a/src/soc/broadcom/cygnus/verstage.c
+++ b/src/soc/broadcom/cygnus/verstage.c
@@ -19,10 +19,8 @@
#include <arch/cache.h>
#include <arch/exception.h>
-#include <arch/hlt.h>
-#include <arch/stages.h>
#include <console/console.h>
-#include <vendorcode/google/chromeos/chromeos.h>
+#include <program_loading.h>
void main(void)
{
@@ -30,11 +28,5 @@ void main(void)
console_init();
exception_init();
-
- entry = vboot2_verify_firmware();
-
- if (entry != (void *)-1)
- stage_exit(entry);
-
- hlt();
+ run_romstage();
}