diff options
author | Simon Glass <sjg@chromium.org> | 2014-06-12 07:24:47 -0600 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-06-19 11:18:59 -0400 |
commit | 126cc864206e0a06635a4bf49b75de8d5a4a80d7 (patch) | |
tree | 584b83cfc337069ac727e999f73a86904529bcda /include | |
parent | b639640371ed38c76602387af865b814967473ba (diff) | |
download | u-boot-imx-126cc864206e0a06635a4bf49b75de8d5a4a80d7.zip u-boot-imx-126cc864206e0a06635a4bf49b75de8d5a4a80d7.tar.gz u-boot-imx-126cc864206e0a06635a4bf49b75de8d5a4a80d7.tar.bz2 |
image: Remove the fit_load_image() property parameter
This can be obtained by looking up the image type, so is redundant. It is
better to centralise this lookup to avoid errors.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/image.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/image.h b/include/image.h index b71e4ba..ae767f0 100644 --- a/include/image.h +++ b/include/image.h @@ -434,8 +434,9 @@ int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images, * out progress messages, checking the type/arch/os and optionally copying it * to the right load address. * + * The property to look up is defined by image_type. + * * @param images Boot images structure - * @param prop_name Property name to look up (FIT_..._PROP) * @param addr Address of FIT in memory * @param fit_unamep On entry this is the requested image name * (e.g. "kernel@1") or NULL to use the default. On exit @@ -454,7 +455,7 @@ int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images, * @param datap Returns address of loaded image * @param lenp Returns length of loaded image */ -int fit_image_load(bootm_headers_t *images, const char *prop_name, ulong addr, +int fit_image_load(bootm_headers_t *images, ulong addr, const char **fit_unamep, const char **fit_uname_configp, int arch, int image_type, int bootstage_id, enum fit_load_op load_op, ulong *datap, ulong *lenp); |