diff options
author | Axel Lin <axel.lin@ingics.com> | 2013-05-21 13:44:10 +0000 |
---|---|---|
committer | Tom Warren <twarren@nvidia.com> | 2013-05-28 12:58:43 -0700 |
commit | 578e63782b87ed0673b7d5088d793db1c46017bb (patch) | |
tree | 01d1f1f787df4deecace834fa75b1841fcb73aa1 | |
parent | 20583d04fb197fd59b438be0731aaaac485094b9 (diff) | |
download | u-boot-imx-578e63782b87ed0673b7d5088d793db1c46017bb.zip u-boot-imx-578e63782b87ed0673b7d5088d793db1c46017bb.tar.gz u-boot-imx-578e63782b87ed0673b7d5088d793db1c46017bb.tar.bz2 |
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>
-rw-r--r-- | arch/arm/cpu/arm720t/start.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/cpu/arm720t/start.S b/arch/arm/cpu/arm720t/start.S index 9facc7e..9f0e3f9 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 |