Re: [U-Boot] [PATCH 02/11] fdt: Report failure of ft_board_setup()

2014-10-17 Thread Anatolij Gustschin
Hi Simon, On Wed, 15 Oct 2014 02:05:32 -0600 Simon Glass wrote: ... > + else if (strncmp(argv[1], "boa", 3) == 0) { > + int err = ft_board_setup(working_fdt, gd->bd); > + > + if (err) { > + printf("Failed to add board information to FDT: %s\n", > +

[U-Boot] [PATCH 02/11] fdt: Report failure of ft_board_setup()

2014-10-15 Thread Simon Glass
Since this function can fail, print a message when it does. Signed-off-by: Simon Glass --- common/cmd_fdt.c | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/common/cmd_fdt.c b/common/cmd_fdt.c index 5640ded..51341ac 100644 --- a/common/cmd_fdt.c +++ b/common/cmd_f