diff options
| author | Simon Glass <[email protected]> | 2024-08-07 16:47:32 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-08-09 16:03:20 -0600 |
| commit | dbe0424d4c7e549ae3308e8a488ecc0fdf858309 (patch) | |
| tree | 4ff0e3bb915b570ae176402c926474b1e42b2a70 | |
| parent | fefb53492f729626a515b67b1acca941ad07e974 (diff) | |
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 <[email protected]>
| -rw-r--r-- | common/spl/spl_fit.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; } |
