
On Fri, 5 Feb 2021 20:12:09 +0100 Pali Rohár pali@kernel.org wrote:
Function s_init() is called only from lowlevel_init(). So compile it only when function lowlevel_init() is compiled.
Reviewed-by: Lukasz Majewski lukma@denx.de
Signed-off-by: Pali Rohár pali@kernel.org
arch/arm/mach-omap2/omap3/board.c | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/arch/arm/mach-omap2/omap3/board.c b/arch/arm/mach-omap2/omap3/board.c index 4da8df47cc..029bd54595 100644 --- a/arch/arm/mach-omap2/omap3/board.c +++ b/arch/arm/mach-omap2/omap3/board.c @@ -179,6 +179,8 @@ void early_system_init(void) hw_data_init(); }
+#if !defined(CONFIG_SKIP_LOWLEVEL_INIT) && \
- !defined(CONFIG_SKIP_LOWLEVEL_INIT_ONLY)
/******************************************************************************
- Routine: s_init
- Description: Does early system init of muxing and clocks.
@@ -207,6 +209,7 @@ void s_init(void) ehci_clocks_enable(); #endif } +#endif
#ifdef CONFIG_SPL_BUILD void board_init_f(ulong dummy)
Best regards,
Lukasz Majewski
--
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma@denx.de