[PATCH 1/2] fdt: Correct condition for receiving bloblist
Simon Glass
sjg at chromium.org
Mon Oct 21 13:42:37 CEST 2024
The condition for receiving a bloblist from TPL is reversed. This was
only noticed are the other fixes landed. Fix it.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
lib/fdtdec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/fdtdec.c b/lib/fdtdec.c
index b0655988029..60e28173c03 100644
--- a/lib/fdtdec.c
+++ b/lib/fdtdec.c
@@ -1677,7 +1677,7 @@ int fdtdec_setup(void)
*/
if (CONFIG_IS_ENABLED(BLOBLIST) &&
(xpl_prev_phase() != PHASE_TPL ||
- !IS_ENABLED(CONFIG_TPL_BLOBLIST))) {
+ IS_ENABLED(CONFIG_TPL_BLOBLIST))) {
ret = bloblist_maybe_init();
if (!ret) {
gd->fdt_blob = bloblist_find(BLOBLISTT_CONTROL_FDT, 0);
--
2.43.0
More information about the U-Boot
mailing list