diff options
| author | Ilias Apalodimas <[email protected]> | 2021-10-12 00:00:14 +0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-10-18 13:19:50 -0400 |
| commit | 2ea63271e522ff6cc9e48191b0e3b459f5e7b456 (patch) | |
| tree | 924ba12bb1049dbd76f5abbab726377d37f4088f /board/broadcom | |
| parent | 2e8d2f88439d7437f04a6af1d206270f9a2240d3 (diff) | |
board: arm: Remove OF_PRIOR_STAGE from the remaining Arm boards
At some point back in 2018 prior_stage_fdt_address and OF_PRIOR_STAGE got
introduced, in order to support a DTB handed over by an earlier stage boo
loader. However we have another option in the Kconfig (OF_BOARD) which has
identical semantics.
So let's remove the option in an effort to simplify U-Boot's config and DTB
management, and use OF_BOARD instead.
Signed-off-by: Ilias Apalodimas <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'board/broadcom')
| -rw-r--r-- | board/broadcom/bcmstb/bcmstb.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/board/broadcom/bcmstb/bcmstb.c b/board/broadcom/bcmstb/bcmstb.c index 276e59b3bd2..723ebda3bd2 100644 --- a/board/broadcom/bcmstb/bcmstb.c +++ b/board/broadcom/bcmstb/bcmstb.c @@ -130,3 +130,9 @@ int board_late_init(void) return 0; } + +void *board_fdt_blob_setup(void) +{ + /* Stored the DTB address there during our init */ + return (void *)prior_stage_fdt_address; +} |
