summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-05-19 10:20:55 -0600
committerTom Rini <[email protected]>2026-06-02 09:30:28 -0600
commitb4858d2afcf7fc819ed33643370a2b3ccf7055ac (patch)
tree12558dcaeb22d566a3273e3ceb6a43e6938969e4
parent679eb25fb8fd75bc6877e8c03f264bf80f71a4b9 (diff)
bloblist: Demote not finding a bloblist to a debug
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 <[email protected]> Tested-by: Alexander Stein <[email protected]> Signed-off-by: Tom Rini <[email protected]>
-rw-r--r--common/bloblist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/bloblist.c b/common/bloblist.c
index d084be89958..09afdd1f96b 100644
--- a/common/bloblist.c
+++ b/common/bloblist.c
@@ -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;