From: Michal Simek Date: Tue, 3 May 2016 12:20:17 +0000 (+0200) Subject: ARM: zynq: Add support for SPL_LOAD_FIT X-Git-Tag: v2016.07-rc1~175^2~21 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9a23f458cbddfbfb67033a2aa60397821698a8a7;p=u-boot ARM: zynq: Add support for SPL_LOAD_FIT Enable minimal function to be able to compile SPL_LOAD_FIT. Signed-off-by: Michal Simek --- diff --git a/arch/arm/mach-zynq/spl.c b/arch/arm/mach-zynq/spl.c index 723019d252..998896519b 100644 --- a/arch/arm/mach-zynq/spl.c +++ b/arch/arm/mach-zynq/spl.c @@ -90,3 +90,13 @@ __weak void ps7_init(void) * board/xilinx/zynq/(platform)/ps7_init_gpl.c, if it exists. */ } + +#ifdef CONFIG_SPL_LOAD_FIT +int board_fit_config_name_match(const char *name) +{ + /* Just empty function now - can't decide what to choose */ + debug("%s: %s\n", __func__, name); + + return 0; +} +#endif