summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2015-09-13 15:33:34 +0200
committerHans de Goede <hdegoede@redhat.com>2015-09-29 11:50:07 +0200
commitcb42d63554a9a87fa7d1bb7349a5af1d1ad3da91 (patch)
tree9aa4b88fbace430cfc10e6e054230640f7b776d7 /arch
parent5c965ed901c09bd046a99c7dc9269e3be2829604 (diff)
downloadtalos-obmc-uboot-cb42d63554a9a87fa7d1bb7349a5af1d1ad3da91.tar.gz
talos-obmc-uboot-cb42d63554a9a87fa7d1bb7349a5af1d1ad3da91.zip
sunxi: Simplify spl board_init_f function
crt0.S will both memset the bss sectioan and call board_init_r for us, so there is no need to do either ourselves. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Acked-by: Ian Campbell <ijc@hellion.org.uk>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/cpu/armv7/sunxi/board.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/arm/cpu/armv7/sunxi/board.c b/arch/arm/cpu/armv7/sunxi/board.c
index b40198b36e..8883cf5c2b 100644
--- a/arch/arm/cpu/armv7/sunxi/board.c
+++ b/arch/arm/cpu/armv7/sunxi/board.c
@@ -198,11 +198,6 @@ void board_init_f(ulong dummy)
i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
#endif
sunxi_board_init();
-
- /* Clear the BSS. */
- memset(__bss_start, 0, __bss_end - __bss_start);
-
- board_init_r(NULL, 0);
}
#endif
OpenPOWER on IntegriCloud