summaryrefslogtreecommitdiffstats
path: root/include/spl.h
diff options
context:
space:
mode:
authorAlexandru Gagniuc <mr.nuke.me@gmail.com>2021-01-20 10:46:49 -0600
committerTom Rini <trini@konsulko.com>2021-02-17 17:12:45 -0500
commitefc4ad0bc763f135f3437f51df693e83941a9928 (patch)
treecedd7ce0eb3b68f24d0c8c1b713ef00e40d8b0a3 /include/spl.h
parent496f49464d90b564da5f1a2f4eecb5553e01edf9 (diff)
downloadu-boot-efc4ad0bc763f135f3437f51df693e83941a9928.tar.gz
u-boot-efc4ad0bc763f135f3437f51df693e83941a9928.tar.xz
u-boot-efc4ad0bc763f135f3437f51df693e83941a9928.zip
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>
Diffstat (limited to 'include/spl.h')
-rw-r--r--include/spl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/spl.h b/include/spl.h
index e172500b5f..0d134587de 100644
--- a/include/spl.h
+++ b/include/spl.h
@@ -701,9 +701,9 @@ int board_return_to_bootrom(struct spl_image_info *spl_image,
/**
* board_spl_fit_post_load - allow process images after loading finished
- *
+ * @fit: Pointer to a valid Flattened Image Tree blob
*/
-void board_spl_fit_post_load(ulong load_addr, size_t length);
+void board_spl_fit_post_load(const void *fit);
/**
* board_spl_fit_size_align - specific size align before processing payload