diff options
author | Paul Kocialkowski <paulk@sys-base.io> | 2024-07-29 22:44:37 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-08-06 18:33:17 -0600 |
commit | a52a95c2a132619d67e7bc6051b367eaefc87c5d (patch) | |
tree | adff5397e8f93a3bb6e917a4fce099c3ed7c3d10 /arch/arm/mach-omap2/boot-common.c | |
parent | 2383b8ef0e09473754bfca2d97a14cafc42e8072 (diff) |
omap: Use spl_soc_init instead of spl_board_init
Both spl_board_init and spl_soc_init are available as ways to run
specific code in the SPL's board_init_r. Use the former for init
code that is specific to the SoC and leave spl_board_init available
for boards to use.
Signed-off-by: Paul Kocialkowski <paulk@sys-base.io>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm/mach-omap2/boot-common.c')
-rw-r--r-- | arch/arm/mach-omap2/boot-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/boot-common.c b/arch/arm/mach-omap2/boot-common.c index e1ea3515ac1..21b204074e8 100644 --- a/arch/arm/mach-omap2/boot-common.c +++ b/arch/arm/mach-omap2/boot-common.c @@ -269,7 +269,7 @@ skip_ipu1: debug("%s: IPU2 failed to start (%d)\n", __func__, ret); } -void spl_board_init(void) +void spl_soc_init(void) { /* Prepare console output */ preloader_console_init(); |