diff options
| author | Simon Glass <[email protected]> | 2022-09-06 20:26:58 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-09-29 16:07:58 -0400 |
| commit | b215b6034c4e75d8eb0a958574b7ec3d7754b180 (patch) | |
| tree | 25aba91a321a35bdaa0f5f3b27296d044d1ab837 /include | |
| parent | 829d51246fda25655b64224f2a19976797cf1897 (diff) | |
event: Pass the images to EVT_FT_FIXUP
Pass the boot images along as well, in case the fixups need to look at
them.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/event.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/event.h b/include/event.h index ff883ca064e..3e6dcbc3dd6 100644 --- a/include/event.h +++ b/include/event.h @@ -60,9 +60,11 @@ union event_data { * struct event_ft_fixup - FDT fixup before booting * * @tree: tree to update + * @images: images which are being booted */ struct event_ft_fixup { oftree tree; + struct bootm_headers *images; } ft_fixup; }; |
