summaryrefslogtreecommitdiff
path: root/src/arch/mips/bootblock_simple.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/mips/bootblock_simple.c')
-rw-r--r--src/arch/mips/bootblock_simple.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/mips/bootblock_simple.c b/src/arch/mips/bootblock_simple.c
index 40987d8bcd..84029ebedb 100644
--- a/src/arch/mips/bootblock_simple.c
+++ b/src/arch/mips/bootblock_simple.c
@@ -32,10 +32,10 @@ void main(void)
bootblock_mmu_init();
- if (init_extra_hardware()) {
+ if (init_extra_hardware())
printk(BIOS_ERR, "bootblock_simple: failed to init HW.\n");
- } else {
+ else
run_romstage();
- }
+
halt();
}