From a0c575793b86ebdcf7260ffc7ebbebb912e7ecf4 Mon Sep 17 00:00:00 2001 From: David Woodhouse Date: Wed, 8 Mar 2017 22:41:12 +0000 Subject: uImage: use 'char *' instead of 'unsigned char *' for uImage_probe() ... and friends. Again, PPC never cared about the difference, while ARM had to add an explicit cast to work around it, which we can remove now. Signed-off-by: David Woodhouse Signed-off-by: Simon Horman --- include/kexec-uImage.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/kexec-uImage.h b/include/kexec-uImage.h index 483b578..983d63f 100644 --- a/include/kexec-uImage.h +++ b/include/kexec-uImage.h @@ -8,8 +8,8 @@ struct Image_info { unsigned int ep; }; -int uImage_probe(const unsigned char *buf, off_t len, unsigned int arch); -int uImage_probe_kernel(const unsigned char *buf, off_t len, unsigned int arch); -int uImage_probe_ramdisk(const unsigned char *buf, off_t len, unsigned int arch); +int uImage_probe(const char *buf, off_t len, unsigned int arch); +int uImage_probe_kernel(const char *buf, off_t len, unsigned int arch); +int uImage_probe_ramdisk(const char *buf, off_t len, unsigned int arch); int uImage_load(const char *buf, off_t len, struct Image_info *info); #endif -- cgit v1.2.1