diff options
Diffstat (limited to 'common/image-fdt.c')
| -rw-r--r-- | common/image-fdt.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/common/image-fdt.c b/common/image-fdt.c index 2e22cca54..6f9ce7d37 100644 --- a/common/image-fdt.c +++ b/common/image-fdt.c @@ -55,7 +55,7 @@ static const image_header_t *image_get_fdt(ulong fdt_addr)  		fdt_error("uImage is compressed");  		return NULL;  	} -	if (fdt_check_header((char *)image_get_data(fdt_hdr)) != 0) { +	if (fdt_check_header((void *)image_get_data(fdt_hdr)) != 0) {  		fdt_error("uImage data is not a fdt");  		return NULL;  	} |