summaryrefslogtreecommitdiff
path: root/cpu/arm_intcm
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2009-05-15 23:45:20 +0200
committerWolfgang Denk <wd@denx.de>2009-06-12 20:39:48 +0200
commit8fc3bb4b0603516ad641e2de252a400b85fd869b (patch)
tree67b1974fe65ed42862111b903390edc81f1d468f /cpu/arm_intcm
parentc20e28f49aaf38c7dede46d8f8fe8234fe90822c (diff)
arm: cleanup remaining CONFIG_INIT_CRITICAL
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'cpu/arm_intcm')
-rw-r--r--cpu/arm_intcm/start.S4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpu/arm_intcm/start.S b/cpu/arm_intcm/start.S
index 00314613d..bb1f00359 100644
--- a/cpu/arm_intcm/start.S
+++ b/cpu/arm_intcm/start.S
@@ -131,7 +131,7 @@ reset:
* we do sys-critical inits only at reboot,
* not when booting from ram!
*/
-#ifdef CONFIG_INIT_CRITICAL
+#ifndef CONFIG_SKIP_LOWLEVEL_INIT
bl cpu_init_crit
#endif
@@ -188,11 +188,13 @@ _start_armboot:
*************************************************************************
*/
+#ifndef CONFIG_SKIP_LOWLEVEL_INIT
cpu_init_crit:
/* arm_int_generic assumes the ARM boot monitor, or user software,
* has initialized the platform
*/
mov pc, lr /* back to my caller */
+#endif
/*
*************************************************************************
*