mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
imx8m: soc.c: demote some printfs to debug
Getting Found /vpu_g1@38300000 node Modify /vpu_g1@38300000:status disabled Found /vpu_g2@38310000 node Modify /vpu_g2@38310000:status disabled etc. on the console on every boot is needlessly verbose. Demote the "Found ..." lines to debug(), which is consistent with other instances in soc.c. Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk> Reviewed-by: Frieder Schrempf <frieder.schrempf@kontron.de> Reviewed-by: Peng Fan <peng.fan@nxp.com>
This commit is contained in:
parent
72235cd96a
commit
cb4e79b7ba
1 changed files with 2 additions and 2 deletions
|
@ -737,7 +737,7 @@ static int disable_fdt_nodes(void *blob, const char *const nodes_path[], int siz
|
|||
if (nodeoff < 0)
|
||||
continue; /* Not found, skip it */
|
||||
|
||||
printf("Found %s node\n", nodes_path[i]);
|
||||
debug("Found %s node\n", nodes_path[i]);
|
||||
|
||||
add_status:
|
||||
rc = fdt_setprop(blob, nodeoff, "status", status, strlen(status) + 1);
|
||||
|
@ -1266,7 +1266,7 @@ int ft_system_setup(void *blob, struct bd_info *bd)
|
|||
if (nodeoff >= 0) {
|
||||
const char *speed = "high-speed";
|
||||
|
||||
printf("Found %s node\n", usb_dwc3_path[v]);
|
||||
debug("Found %s node\n", usb_dwc3_path[v]);
|
||||
|
||||
usb_modify_speed:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue