diff options
| author | Josh Wu <[email protected]> | 2015-10-23 17:23:57 +0800 |
|---|---|---|
| committer | Andreas Bießmann <[email protected]> | 2015-11-01 22:02:14 +0100 |
| commit | 478ec83489dea9e27b59eeaf77eed52a6d1185f5 (patch) | |
| tree | c63e7bec141ae8dac8a4a366cfe09a5049e01e22 | |
| parent | 0e067a65f57189703668826d9841fea477026bf6 (diff) | |
at91: simplify spl board_init_f function
crt0.S do both memset the bss section and call board_init_r for us, so
remove them from board_init_f().
Signed-off-by: Josh Wu <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Reviewed-by: Andreas Bießmann <[email protected]>
| -rw-r--r-- | arch/arm/mach-at91/spl_atmel.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/arm/mach-at91/spl_atmel.c b/arch/arm/mach-at91/spl_atmel.c index 8ac53353e62..b2fb51d0ac2 100644 --- a/arch/arm/mach-at91/spl_atmel.c +++ b/arch/arm/mach-at91/spl_atmel.c @@ -98,9 +98,4 @@ void board_init_f(ulong dummy) preloader_console_init(); mem_init(); - - /* Clear the BSS. */ - memset(__bss_start, 0, __bss_end - __bss_start); - - board_init_r(NULL, 0); } |
