diff options
author | Tom Rini <trini@konsulko.com> | 2019-06-05 15:49:09 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-06-05 15:49:09 -0400 |
commit | 2253e40caef5b45bcae2ccdb238f9cf037eefc0b (patch) | |
tree | 2414554a9caff9998089915eefc4c4e9fce044f3 /arch/arm/mach-davinci/spl.c | |
parent | 6d93d245c148f10f15724601650fab3a665f102c (diff) | |
parent | ea41b15617fa6869a6bb628dad8f972db4d77139 (diff) |
Merge branch '2019-06-05-master-imports'
- More DaVinci fixes
- BuR platform fix
Diffstat (limited to 'arch/arm/mach-davinci/spl.c')
-rw-r--r-- | arch/arm/mach-davinci/spl.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/mach-davinci/spl.c b/arch/arm/mach-davinci/spl.c index 103639e3475..be3daa9bc02 100644 --- a/arch/arm/mach-davinci/spl.c +++ b/arch/arm/mach-davinci/spl.c @@ -31,9 +31,12 @@ void putc(char c) } #endif /* CONFIG_SPL_LIBCOMMON_SUPPORT */ -void spl_board_init(void) +void board_init_f(ulong dummy) { arch_cpu_init(); + + spl_early_init(); + preloader_console_init(); } |