mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
tools/imximage.c: Fix compiling warning
Convert set_hdr_func(struct imx_header *imxhdr) to set_hdr_func(void) to get rid of the warning warning: ‘imxhdr’ is used uninitialized in this function Signed-off-by: York Sun <yorksun@freescale.com> Acked-by: Stefano Babic <sbabic@denx.de>
This commit is contained in:
@ -259,7 +259,7 @@ static void set_imx_hdr_v2(struct imx_header *imxhdr, uint32_t dcd_len,
|
|||||||
csf_ptr = &fhdr_v2->csf;
|
csf_ptr = &fhdr_v2->csf;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void set_hdr_func(struct imx_header *imxhdr)
|
static void set_hdr_func(void)
|
||||||
{
|
{
|
||||||
switch (imximage_version) {
|
switch (imximage_version) {
|
||||||
case IMXIMAGE_V1:
|
case IMXIMAGE_V1:
|
||||||
@ -358,7 +358,7 @@ static void parse_cfg_cmd(struct imx_header *imxhdr, int32_t cmd, char *token,
|
|||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
cmd_ver_first = 1;
|
cmd_ver_first = 1;
|
||||||
set_hdr_func(imxhdr);
|
set_hdr_func();
|
||||||
break;
|
break;
|
||||||
case CMD_BOOT_FROM:
|
case CMD_BOOT_FROM:
|
||||||
imximage_ivt_offset = get_table_entry_id(imximage_boot_offset,
|
imximage_ivt_offset = get_table_entry_id(imximage_boot_offset,
|
||||||
@ -563,7 +563,7 @@ static void imximage_set_header(void *ptr, struct stat *sbuf, int ifd,
|
|||||||
/* Be able to detect if the cfg file has no BOOT_FROM tag */
|
/* Be able to detect if the cfg file has no BOOT_FROM tag */
|
||||||
imximage_ivt_offset = FLASH_OFFSET_UNDEFINED;
|
imximage_ivt_offset = FLASH_OFFSET_UNDEFINED;
|
||||||
imximage_csf_size = 0;
|
imximage_csf_size = 0;
|
||||||
set_hdr_func(imxhdr);
|
set_hdr_func();
|
||||||
|
|
||||||
/* Parse dcd configuration file */
|
/* Parse dcd configuration file */
|
||||||
dcd_len = parse_cfg_file(imxhdr, params->imagename);
|
dcd_len = parse_cfg_file(imxhdr, params->imagename);
|
||||||
@ -631,7 +631,7 @@ static int imximage_generate(struct mkimage_params *params,
|
|||||||
/* Be able to detect if the cfg file has no BOOT_FROM tag */
|
/* Be able to detect if the cfg file has no BOOT_FROM tag */
|
||||||
imximage_ivt_offset = FLASH_OFFSET_UNDEFINED;
|
imximage_ivt_offset = FLASH_OFFSET_UNDEFINED;
|
||||||
imximage_csf_size = 0;
|
imximage_csf_size = 0;
|
||||||
set_hdr_func(imxhdr);
|
set_hdr_func();
|
||||||
|
|
||||||
/* Parse dcd configuration file */
|
/* Parse dcd configuration file */
|
||||||
parse_cfg_file(&imximage_header, params->imagename);
|
parse_cfg_file(&imximage_header, params->imagename);
|
||||||
|
Reference in New Issue
Block a user