projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c965ed
)
sunxi: Simplify spl board_init_f function
author
Hans de Goede
<hdegoede@redhat.com>
Sun, 13 Sep 2015 13:33:34 +0000
(15:33 +0200)
committer
Hans de Goede
<hdegoede@redhat.com>
Tue, 29 Sep 2015 09:50:07 +0000
(11:50 +0200)
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>
arch/arm/cpu/armv7/sunxi/board.c
patch
|
blob
|
history
diff --git
a/arch/arm/cpu/armv7/sunxi/board.c
b/arch/arm/cpu/armv7/sunxi/board.c
index b40198b36ee5c03a8caaaff42dc53b855c84566e..8883cf5c2b21378236304c6d4bc50cef33840581 100644
(file)
--- 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