diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2016-05-24 05:04:43 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-05-27 19:47:42 (GMT) |
commit | cfe32a4be24da8cf51bbbfa57ddd7cbddade2f43 (patch) | |
tree | 2c3ceec4fe210c2e1dba08d8e77ec5a58500db5d /common | |
parent | 8bd887727913e9393ef467cdf8b0146babb2673d (diff) | |
download | u-boot-cfe32a4be24da8cf51bbbfa57ddd7cbddade2f43.tar.xz |
spl: fit: Do not print selected dtb during fit load
No prints should be allowed during UART load.
Reviewed-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/spl/spl_fit.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/common/spl/spl_fit.c b/common/spl/spl_fit.c index fb69f1d..a828f72 100644 --- a/common/spl/spl_fit.c +++ b/common/spl/spl_fit.c @@ -67,9 +67,7 @@ static int spl_fit_select_fdt(const void *fdt, int images, int *fdt_offsetp) *fdt_offsetp = fdt_getprop_u32(fdt, fdt_node, "data-offset"); len = fdt_getprop_u32(fdt, fdt_node, "data-size"); -#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT - printf("FIT: Selected '%s'\n", name); -#endif + debug("FIT: Selected '%s'\n", name); return len; } |