diff options
Diffstat (limited to 'common/image.c')
| -rw-r--r-- | common/image.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/common/image.c b/common/image.c index 2b6007e9c..6d8833e81 100644 --- a/common/image.c +++ b/common/image.c @@ -60,7 +60,7 @@ static int fit_check_ramdisk (const void *fit, int os_noffset,  #endif  #ifdef CONFIG_CMD_BDI -extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); +extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);  #endif  DECLARE_GLOBAL_DATA_PTR; @@ -756,7 +756,7 @@ int genimg_has_config (bootm_headers_t *images)   *     1, if ramdisk image is found but corrupted, or invalid   *     rd_start and rd_end are set to 0 if no ramdisk exists   */ -int boot_get_ramdisk (int argc, char *argv[], bootm_headers_t *images, +int boot_get_ramdisk (int argc, char * const argv[], bootm_headers_t *images,  		uint8_t arch, ulong *rd_start, ulong *rd_end)  {  	ulong rd_addr, rd_load; @@ -1279,7 +1279,7 @@ error:   *     1, if fdt image is found but corrupted   *     of_flat_tree and of_size are set to 0 if no fdt exists   */ -int boot_get_fdt (int flag, int argc, char *argv[], bootm_headers_t *images, +int boot_get_fdt (int flag, int argc, char * const argv[], bootm_headers_t *images,  		char **of_flat_tree, ulong *of_size)  {  	const image_header_t *fdt_hdr; |