diff mbox series

[v3,14/21] spl: Set SPL_FIT_FOUND for full FIT also

Message ID 20240721100940.3202027-15-sjg@chromium.org
State Changes Requested
Delegated to: Tom Rini
Headers show
Series Universal Payload initial series | expand

Commit Message

Simon Glass July 21, 2024, 10:09 a.m. UTC
This flag is set for simple FIT, so set it for full FIT too.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

Changes in v3:
- Split out into its own commit

 common/spl/spl_fit.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/common/spl/spl_fit.c b/common/spl/spl_fit.c
index 2a097f4464c..527a5691ac6 100644
--- a/common/spl/spl_fit.c
+++ b/common/spl/spl_fit.c
@@ -941,6 +941,7 @@  int spl_load_fit_image(struct spl_image_info *spl_image,
 		if (ret < 0)
 			return ret;
 	}
+	spl_image->flags |= SPL_FIT_FOUND;
 
 	return 0;
 }