diff options
| author | Tom Rini <[email protected]> | 2026-08-06 14:10:20 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-08-06 19:36:40 -0600 |
| commit | 8fac9697048dc01fe77c7511a9ce0b76cbd2715b (patch) | |
| tree | 6d25849337afe0410cb130a09b92a3f470fa8bd3 | |
| parent | 292230b36a47751bf51e6dbe74d539cdee1769ba (diff) | |
| parent | cd6f2f451903559627f29c563887624f3f386770 (diff) | |
Merge tag 'fwu-main-03082026' of https://git.u-boot-project.org/u-boot/custodians/u-boot-tpm
A single patch from Michal enhancing the failures
prints on fatal FWU errors
| -rw-r--r-- | lib/fwu_updates/fwu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fwu_updates/fwu.c b/lib/fwu_updates/fwu.c index 2b11e5da061..e9bb1b4fc65 100644 --- a/lib/fwu_updates/fwu.c +++ b/lib/fwu_updates/fwu.c @@ -759,7 +759,7 @@ static int fwu_boottime_checks(void) ret = uclass_first_device_err(UCLASS_FWU_MDATA, &g_dev); if (ret) { - log_debug("Cannot find fwu device\n"); + log_err("Cannot find fwu device\n"); return ret; } @@ -771,7 +771,7 @@ static int fwu_boottime_checks(void) ret = fwu_init(); if (ret) { - log_debug("fwu_init() failed\n"); + log_err("fwu_init() failed\n"); return ret; } |
