Skip to content
Snippets Groups Projects
Commit cfe32a4b authored by Lokesh Vutla's avatar Lokesh Vutla Committed by Tom Rini
Browse files

spl: fit: Do not print selected dtb during fit load


No prints should be allowed during UART load.

Reviewed-by: default avatarTom Rini <trini@konsulko.com>
Signed-off-by: default avatarLokesh Vutla <lokeshvutla@ti.com>
parent 8bd88772
No related branches found
No related tags found
No related merge requests found
...@@ -67,9 +67,7 @@ static int spl_fit_select_fdt(const void *fdt, int images, int *fdt_offsetp) ...@@ -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"); *fdt_offsetp = fdt_getprop_u32(fdt, fdt_node, "data-offset");
len = fdt_getprop_u32(fdt, fdt_node, "data-size"); len = fdt_getprop_u32(fdt, fdt_node, "data-size");
#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT debug("FIT: Selected '%s'\n", name);
printf("FIT: Selected '%s'\n", name);
#endif
return len; return len;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment