[U-Boot] [PATCH] ARM: zynq: Add support for SPL_LOAD_FIT

3 May
2016
3 May
'16
2:21 p.m.
Enable minimal function to be able to compile SPL_LOAD_FIT.
Signed-off-by: Michal Simek michal.simek@xilinx.com ---
arch/arm/mach-zynq/spl.c | 10 ++++++++++ 1 file changed, 10 insertions(+)
diff --git a/arch/arm/mach-zynq/spl.c b/arch/arm/mach-zynq/spl.c index 723019d25279..998896519baa 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
--
1.9.1
3291
Age (days ago)
3291
Last active (days ago)
0 comments
1 participants
participants (1)
-
Michal Simek