From: Stefan Roese Date: Mon, 31 Aug 2015 05:20:12 +0000 (+0200) Subject: arm: mvebu: Do not call board_init_r() from board_init_f() X-Git-Tag: v2016.01-rc1~301^2~6 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=78de2c0c3e4ffc550023b667f72a3eb6c252ff80;p=u-boot arm: mvebu: Do not call board_init_r() from board_init_f() Instead of calling board_init_r() directly from board_init_f(), just return from board_init_f(). This will make the code continue executing in crt0.S _main(), from which the board_init_r() is called. This patch aligns the MVEBU SPL with the correct SPL design as well as reduces the stack utilisation slightly. Signed-off-by: Stefan Roese Cc: Marek Vasut Cc: Simon Glass Cc: Luka Perkov --- diff --git a/arch/arm/mach-mvebu/spl.c b/arch/arm/mach-mvebu/spl.c index 26ff1a24ac..e273339648 100644 --- a/arch/arm/mach-mvebu/spl.c +++ b/arch/arm/mach-mvebu/spl.c @@ -78,6 +78,4 @@ void board_init_f(ulong dummy) */ return_to_bootrom(); #endif - - board_init_r(NULL, 0); }