diff options
author | Simon Glass <sjg@chromium.org> | 2014-10-23 18:58:48 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-11-21 04:43:17 +0100 |
commit | 4ba98dc269d6a7731549669587784b3a5ae637f3 (patch) | |
tree | 418415d966efaeeb89c1d56e9409c292f463459f | |
parent | e895a4b06f9062f052d438df7f4766b3decdb3d4 (diff) | |
download | u-boot-imx-4ba98dc269d6a7731549669587784b3a5ae637f3.zip u-boot-imx-4ba98dc269d6a7731549669587784b3a5ae637f3.tar.gz u-boot-imx-4ba98dc269d6a7731549669587784b3a5ae637f3.tar.bz2 |
fdt: Report failure of ft_board_setup()
Since this function can fail, print a message when it does.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Anatolij Gustschin <agust@denx.de>
Reviewed-by: Tom Rini <trini@ti.com>
-rw-r--r-- | common/cmd_fdt.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/common/cmd_fdt.c b/common/cmd_fdt.c index 5640ded..6f7ea08 100644 --- a/common/cmd_fdt.c +++ b/common/cmd_fdt.c @@ -566,8 +566,15 @@ static int do_fdt(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) } #ifdef CONFIG_OF_BOARD_SETUP /* Call the board-specific fixup routine */ - else if (strncmp(argv[1], "boa", 3) == 0) - ft_board_setup(working_fdt, gd->bd); + else if (strncmp(argv[1], "boa", 3) == 0) { + int err = ft_board_setup(working_fdt, gd->bd); + + if (err) { + printf("Failed to update board information in FDT: %s\n", + fdt_strerror(err)); + return CMD_RET_FAILURE; + } + } #endif /* Create a chosen node */ else if (strncmp(argv[1], "cho", 3) == 0) { |