summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2013-05-21 13:44:10 +0000
committerTom Warren <twarren@nvidia.com>2013-05-28 12:58:43 -0700
commit578e63782b87ed0673b7d5088d793db1c46017bb (patch)
tree01d1f1f787df4deecace834fa75b1841fcb73aa1 /arch
parent20583d04fb197fd59b438be0731aaaac485094b9 (diff)
ARM: arm720t: Add missing CONFIG_SKIP_LOWLEVEL_INIT guard for cpu_init_crit
cpu_init_crit() can be skipped, but the code is still enabled requiring a platform to supply lowlevel_init(). Signed-off-by: Axel Lin <axel.lin@ingics.com> Tested-by: Stephen Warren <swarren@nvidia.com> Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/cpu/arm720t/start.S2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/cpu/arm720t/start.S b/arch/arm/cpu/arm720t/start.S
index 9facc7e694..9f0e3f961a 100644
--- a/arch/arm/cpu/arm720t/start.S
+++ b/arch/arm/cpu/arm720t/start.S
@@ -244,6 +244,7 @@ c_runtime_cpu_setup:
*************************************************************************
*/
+#ifndef CONFIG_SKIP_LOWLEVEL_INIT
cpu_init_crit:
#if !defined(CONFIG_TEGRA)
@@ -258,6 +259,7 @@ cpu_init_crit:
#endif
mov pc, lr
+#endif /* CONFIG_SKIP_LOWLEVEL_INIT */
#ifndef CONFIG_SPL_BUILD