From: Nicholas Faustini Date: Wed, 3 Oct 2018 10:58:48 +0000 (+0200) Subject: fdt: add call to ft_board_setup_ex() for ks2 boards X-Git-Tag: v2018.11-rc2~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2c76d311a4de1ee70a6ee0adc0bedbd26de69f5f;p=platform%2Fkernel%2Fu-boot.git fdt: add call to ft_board_setup_ex() for ks2 boards When updating the board FDT, some of the operations are performed by ft_board_setup_ex() and should be executed also by the fdt command. Signed-off-by: Nicholas Faustini Reviewed-by: Tom Rini --- diff --git a/cmd/fdt.c b/cmd/fdt.c index 28de467..8a19a3f 100644 --- a/cmd/fdt.c +++ b/cmd/fdt.c @@ -596,6 +596,9 @@ static int do_fdt(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) fdt_strerror(err)); return CMD_RET_FAILURE; } +#ifdef CONFIG_SOC_KEYSTONE + ft_board_setup_ex(working_fdt, gd->bd); +#endif } #endif /* Create a chosen node */