[PATCH 2/3] bloblist: Demote not finding a bloblist to a debug
Raymond Mao
raymondmaoca at gmail.com
Fri May 15 16:10:42 CEST 2026
Hi Tom,
On Thu, May 14, 2026 at 2:02 PM Tom Rini <trini at konsulko.com> wrote:
>
> 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.
>
> Signed-off-by: Tom Rini <trini at konsulko.com>
> ---
> common/bloblist.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
Looks fine to me.
Reviewed-by: Raymond Mao <raymondmaoca at gmail.com>
Raymond
> diff --git a/common/bloblist.c b/common/bloblist.c
> index d084be899588..09afdd1f96b4 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;
> --
> 2.43.0
>
More information about the U-Boot
mailing list