summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorPantelis Antoniou <pantelis.antoniou@konsulko.com>2017-09-04 20:12:12 (GMT)
committerSimon Glass <sjg@chromium.org>2017-09-15 11:27:48 (GMT)
commit81ecc5d92badfcf1415a6052b5896a62271a94dc (patch)
tree08ba141431f1705916dfd046680c9da9a324dff3 /cmd
parentfc7c31891c40dd1aac2e71e9d1546727ca2b3556 (diff)
downloadu-boot-81ecc5d92badfcf1415a6052b5896a62271a94dc.tar.xz
fdt: Switch to using the verbose overlay application method
The verbose overlay application method prints out more helpful messages, so switch to it. Signed-off-by: Pantelis Antoniou <pantelis.antoniou@konsulko.com> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/fdt.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/cmd/fdt.c b/cmd/fdt.c
index d7654b2..955a008 100644
--- a/cmd/fdt.c
+++ b/cmd/fdt.c
@@ -667,11 +667,10 @@ static int do_fdt(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
if (!fdt_valid(&blob))
return CMD_RET_FAILURE;
- ret = fdt_overlay_apply(working_fdt, blob);
- if (ret) {
- printf("fdt_overlay_apply(): %s\n", fdt_strerror(ret));
+ /* apply method prints messages on error */
+ ret = fdt_overlay_apply_verbose(working_fdt, blob);
+ if (ret)
return CMD_RET_FAILURE;
- }
}
#endif
/* resize the fdt */