dm: core: ofnode: Fix error message in ofnode_read_bootscript_address/flash()
Missing u-boot node shouldn't be visible in bootlog without debug enabled
that's why change message from printf to debug.
Signed-off-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/ff62e980237ab271cf05facfbc306e85914a8c6e.1694438999.git.michal.simek@amd.com
diff --git a/drivers/core/ofnode.c b/drivers/core/ofnode.c
index fb4447c..ff0a5b5 100644
--- a/drivers/core/ofnode.c
+++ b/drivers/core/ofnode.c
@@ -1603,7 +1603,7 @@
uboot = ofnode_path("/options/u-boot");
if (!ofnode_valid(uboot)) {
- printf("%s: Missing /u-boot node\n", __func__);
+ debug("%s: Missing /u-boot node\n", __func__);
return -EINVAL;
}
@@ -1629,7 +1629,7 @@
uboot = ofnode_path("/options/u-boot");
if (!ofnode_valid(uboot)) {
- printf("%s: Missing /u-boot node\n", __func__);
+ debug("%s: Missing /u-boot node\n", __func__);
return -EINVAL;
}