Skip to content
Snippets Groups Projects
Commit 578e6378 authored by Axel Lin's avatar Axel Lin Committed by Tom Warren
Browse files

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: default avatarAxel Lin <axel.lin@ingics.com>
Tested-by: default avatarStephen Warren <swarren@nvidia.com>
Signed-off-by: default avatarTom Warren <twarren@nvidia.com>
parent 20583d04
No related branches found
No related tags found
Loading
...@@ -244,6 +244,7 @@ c_runtime_cpu_setup: ...@@ -244,6 +244,7 @@ c_runtime_cpu_setup:
************************************************************************* *************************************************************************
*/ */
#ifndef CONFIG_SKIP_LOWLEVEL_INIT
cpu_init_crit: cpu_init_crit:
#if !defined(CONFIG_TEGRA) #if !defined(CONFIG_TEGRA)
...@@ -258,6 +259,7 @@ cpu_init_crit: ...@@ -258,6 +259,7 @@ cpu_init_crit:
#endif #endif
mov pc, lr mov pc, lr
#endif /* CONFIG_SKIP_LOWLEVEL_INIT */
#ifndef CONFIG_SPL_BUILD #ifndef CONFIG_SPL_BUILD
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment