From: Simon Glass Date: Wed, 7 Aug 2024 22:47:32 +0000 (-0600) Subject: spl: Set SPL_FIT_FOUND for full FIT also X-Git-Url: http://git.dujemihanovic.xyz/img/static/gitweb.css?a=commitdiff_plain;h=dbe0424d4c7e549ae3308e8a488ecc0fdf858309;p=u-boot.git spl: Set SPL_FIT_FOUND for full FIT also This flag is set for simple FIT, so set it for full FIT too. Signed-off-by: Simon Glass --- diff --git a/common/spl/spl_fit.c b/common/spl/spl_fit.c index 2a097f4464..527a5691ac 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; }