From: Marek Vasut Date: Mon, 30 Jul 2018 11:58:54 +0000 (+0200) Subject: ARM: socfpga: Register the FPGA on A10 in SPL again X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=af74658e04a78d02229804ed429551da5e6a3488;p=u-boot.git ARM: socfpga: Register the FPGA on A10 in SPL again The restructuring of the SPL dropped registration of the FPGA in SPL, readd it. Signed-off-by: Marek Vasut Cc: Chin Liang See Cc: Dinh Nguyen Cc: Ley Foon Tan Fixes: c859f2a77d98 ("arm: socfpga: Restructure the SPL file") --- diff --git a/arch/arm/mach-socfpga/spl_a10.c b/arch/arm/mach-socfpga/spl_a10.c index fe4782c9cb..4164e4d31c 100644 --- a/arch/arm/mach-socfpga/spl_a10.c +++ b/arch/arm/mach-socfpga/spl_a10.c @@ -17,6 +17,7 @@ #include #include #include +#include #include #include #include @@ -79,6 +80,11 @@ void spl_board_init(void) /* enable console uart printing */ preloader_console_init(); + + WATCHDOG_RESET(); + + /* Add device descriptor to FPGA device table */ + socfpga_fpga_add(); } void board_init_f(ulong dummy)