From: Marek Vasut Date: Sat, 29 Aug 2015 08:16:20 +0000 (+0200) Subject: arm: socfpga: Do not call board_init_r() from board_init_f() X-Git-Tag: KARO-TXSD-2017-03-15~3429^2~4 X-Git-Url: https://git.karo-electronics.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=a665b051b5a191c2b5c1c8ed238ccf7d29b7109b arm: socfpga: 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 SoCFPGA SPL with the correct SPL design as well as reduces the stack utilisation slightly. Signed-off-by: Marek Vasut Cc: Dinh Nguyen --- diff --git a/arch/arm/mach-socfpga/spl.c b/arch/arm/mach-socfpga/spl.c index 13ec24bc16..775a82780f 100644 --- a/arch/arm/mach-socfpga/spl.c +++ b/arch/arm/mach-socfpga/spl.c @@ -180,6 +180,4 @@ void board_init_f(ulong dummy) /* Configure simple malloc base pointer into RAM. */ gd->malloc_base = CONFIG_SYS_TEXT_BASE + (1024 * 1024); - - board_init_r(NULL, 0); }