diff options
author | Ovidiu Panait <ovpanait@gmail.com> | 2020-02-05 08:54:42 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-02-13 10:10:50 -0500 |
commit | fbf9c154a6d9c600b355076c33f60781ddbd34f2 (patch) | |
tree | de26257b44f6ba2ba3bf27d2e43d144446e7b379 | |
parent | 215df01de40bfefc32c86c73e4acbca1bbb74329 (diff) | |
download | u-boot-fbf9c154a6d9c600b355076c33f60781ddbd34f2.tar.gz |
board_f: Make clear_bss generic
clear_bss is already used by 3 arches (x86, arc, xtensa), so make it generic
and provide a weak nop stub for it. This also removes arch-specific ifdef
duplications around clear_bss.
Signed-off-by: Ovidiu Panait <ovpanait@gmail.com>
-rw-r--r-- | common/board_f.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/common/board_f.c b/common/board_f.c index 8fa26e3ca5..82a164752a 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -867,6 +867,11 @@ __weak int checkcpu(void) return 0; } +__weak int clear_bss(void) +{ + return 0; +} + static const init_fnc_t init_sequence_f[] = { setup_mon_len, #ifdef CONFIG_OF_CONTROL @@ -1002,11 +1007,8 @@ static const init_fnc_t init_sequence_f[] = { #if defined(CONFIG_X86) || defined(CONFIG_ARC) copy_uboot_to_ram, do_elf_reloc_fixups, - clear_bss, #endif -#if defined(CONFIG_XTENSA) clear_bss, -#endif #if !defined(CONFIG_ARM) && !defined(CONFIG_SANDBOX) && \ !CONFIG_IS_ENABLED(X86_64) jump_to_copy, |