diff options
| author | Simon Glass <sjg@chromium.org> | 2024-08-21 10:19:11 -0600 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2024-08-26 14:05:38 -0600 |
| commit | 894197285407ae5782597cdd9c79eca8518246ed (patch) | |
| tree | 3a6f04d46dfc162a1702f4213ba1bf0e1e8295a1 /include/board_f.h | |
| parent | 5019d3282cb738604cdc33102809ed7a0ceaf08e (diff) | |
board_f: Move new_bootstage to boardf
This value is only used before relocation. Move it to the new boardf
struct.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/board_f.h')
| -rw-r--r-- | include/board_f.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/board_f.h b/include/board_f.h index d9c793fbeb1..1eba236a961 100644 --- a/include/board_f.h +++ b/include/board_f.h @@ -22,6 +22,10 @@ struct board_f { * @fdt_size: space reserved for relocated device space */ unsigned long fdt_size; + /** + * @new_bootstage: relocated boot stage information + */ + struct bootstage_data *new_bootstage; }; #endif |
