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 <sjg@chromium.org>
This commit is contained in:
Simon Glass 2024-08-07 16:47:32 -06:00 committed by Tom Rini
parent fefb53492f
commit dbe0424d4c

View file

@ -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;
}