Commit ca92650e6b1b7326ecfd16db2de3e6ca1b6fed23

Authored by Lokesh Vutla
1 parent c3846c69e1

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

No prints should be allowed during UART load.

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

Showing 1 changed file with 1 additions and 3 deletions Side-by-side Diff

common/spl/spl_fit.c
... ... @@ -62,9 +62,7 @@
62 62  
63 63 *fdt_offsetp = fdt_getprop_u32(fdt, fdt_node, "data-offset");
64 64 len = fdt_getprop_u32(fdt, fdt_node, "data-size");
65   -#ifdef CONFIG_SPL_LIBCOMMON_SUPPORT
66   - printf("FIT: Selected '%s'\n", name);
67   -#endif
  65 + debug("FIT: Selected '%s'\n", name);
68 66  
69 67 return len;
70 68 }