]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
bloblist: Demote not finding a bloblist to a debug
authorTom Rini <trini@konsulko.com>
Tue, 19 May 2026 16:20:55 +0000 (10:20 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 2 Jun 2026 15:30:28 +0000 (09:30 -0600)
The message about not finding a bloblist will quite often be seen at
least once, and is non-fatal. Demote this to a log_debug message from a
log_warning message.

Reviewed-by: Raymond Mao <raymondmaoca@gmail.com>
Tested-by: Alexander Stein <alexander.stein@ew.tq-group.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
common/bloblist.c

index d084be8995883ceb3f4b2b8b882a6ff301ba5b48..09afdd1f96b412ea38d6b5827ec15543d8074a6d 100644 (file)
@@ -613,8 +613,8 @@ int bloblist_init(void)
                        ret = bloblist_check(addr, size);
 
                if (ret)
-                       log_warning("Bloblist at %lx not found (err=%d)\n",
-                                   addr, ret);
+                       log_debug("Bloblist at %lx not found (err=%d)\n",
+                                 addr, ret);
                else
                        /* Get the real size */
                        size = gd->bloblist->total_size;