]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
dm: core: ofnode: Fix error message in ofnode_read_bootscript_address/flash()
authorMichal Simek <michal.simek@amd.com>
Mon, 11 Sep 2023 13:30:01 +0000 (15:30 +0200)
committerMichal Simek <michal.simek@amd.com>
Thu, 21 Sep 2023 11:20:11 +0000 (13:20 +0200)
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
drivers/core/ofnode.c

index fb4447c84b7008829ec3bf09f22565c45602d10b..ff0a5b5164f4a23e9ebd4e333837de0510a775c7 100644 (file)
@@ -1603,7 +1603,7 @@ int ofnode_read_bootscript_address(u64 *bootscr_address, u64 *bootscr_offset)
 
        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 @@ int ofnode_read_bootscript_flash(u64 *bootscr_flash_offset,
 
        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;
        }