diff options
Diffstat (limited to 'board/mcc200/auto_update.c')
| -rw-r--r-- | board/mcc200/auto_update.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/board/mcc200/auto_update.c b/board/mcc200/auto_update.c index fcae35aaf..5580c1188 100644 --- a/board/mcc200/auto_update.c +++ b/board/mcc200/auto_update.c @@ -144,7 +144,7 @@ int au_check_cksum_valid(int idx, long nbytes)  	hdr = (image_header_t *)LOAD_ADDR;  #if defined(CONFIG_FIT) -	if (gen_image_get_format ((void *)hdr) != IMAGE_FORMAT_LEGACY) { +	if (genimg_get_format ((void *)hdr) != IMAGE_FORMAT_LEGACY) {  		puts ("Non legacy image format not supported\n");  		return -1;  	} @@ -169,7 +169,7 @@ int au_check_header_valid(int idx, long nbytes)  	hdr = (image_header_t *)LOAD_ADDR;  #if defined(CONFIG_FIT) -	if (gen_image_get_format ((void *)hdr) != IMAGE_FORMAT_LEGACY) { +	if (genimg_get_format ((void *)hdr) != IMAGE_FORMAT_LEGACY) {  		puts ("Non legacy image format not supported\n");  		return -1;  	} @@ -247,7 +247,7 @@ int au_do_update(int idx, long sz)  	hdr = (image_header_t *)LOAD_ADDR;  #if defined(CONFIG_FIT) -	if (gen_image_get_format ((void *)hdr) != IMAGE_FORMAT_LEGACY) { +	if (genimg_get_format ((void *)hdr) != IMAGE_FORMAT_LEGACY) {  		puts ("Non legacy image format not supported\n");  		return -1;  	} |