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 <mr.nuke.me@gmail.com> Reviewed-by: Peng Fan <peng.fan@nxp.com> Reviewed-by: Simon Glass <sjg@chromium.org> CC: Matt Porter <mporter@konsulko.com>
This commit is contained in:
committed by
Tom Rini
parent
496f49464d
commit
efc4ad0bc7
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user