diff options
| author | Alexandru Gagniuc <[email protected]> | 2021-01-20 10:46:49 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-02-17 17:12:45 -0500 |
| commit | efc4ad0bc763f135f3437f51df693e83941a9928 (patch) | |
| tree | cedd7ce0eb3b68f24d0c8c1b713ef00e40d8b0a3 /common/spl | |
| parent | 496f49464d90b564da5f1a2f4eecb5553e01edf9 (diff) | |
spl: fit: Drop 'length' argument to board_spl_fit_post_load()
The size is derived from the FIT image itself. Any alignment
requirements are machine-specific and known by the board code. Thus
the total length can be derived from the FIT image and knowledge of
the platform. The 'length' argument is redundant. Remove it.
Signed-off-by: Alexandru Gagniuc <[email protected]>
Reviewed-by: Peng Fan <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
CC: Matt Porter <[email protected]>
Diffstat (limited to 'common/spl')
| -rw-r--r-- | common/spl/spl_fit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/spl/spl_fit.c b/common/spl/spl_fit.c index a2612b45a59..bf3731a6272 100644 --- a/common/spl/spl_fit.c +++ b/common/spl/spl_fit.c @@ -27,7 +27,7 @@ DECLARE_GLOBAL_DATA_PTR; #define CONFIG_SYS_BOOTM_LEN (64 << 20) #endif -__weak void board_spl_fit_post_load(ulong load_addr, size_t length) +__weak void board_spl_fit_post_load(const void *fit) { } @@ -726,7 +726,7 @@ int spl_load_simple_fit(struct spl_image_info *spl_image, spl_image->flags |= SPL_FIT_FOUND; #ifdef CONFIG_IMX_HAB - board_spl_fit_post_load((ulong)fit, size); + board_spl_fit_post_load(fit); #endif return 0; |
