From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeroen Hofstee Date: Thu, 19 Sep 2013 19:22:36 +0200 Subject: [U-Boot] [PATCH v2] FIT: delete unnecessary casts In-Reply-To: <1379560218-16256-1-git-send-email-yamada.m@jp.panasonic.com> References: <1379560218-16256-1-git-send-email-yamada.m@jp.panasonic.com> Message-ID: <523B32DC.8010801@myspectrum.nl> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 09/19/2013 05:10 AM, Masahiro Yamada wrote: > Becuase fdt_check_header function takes (const void *) > type argument, the argument should be passed to it > without being casted to (char *). > > Signed-off-by: Masahiro Yamada > --- > > Changes for v2: > - fix commit log (purely cosmetic) > (s/img_addr/the argument/) > > > common/image-fdt.c | 2 +- > common/image-fit.c | 2 +- > common/image.c | 6 +----- > tools/fit_image.c | 2 +- > 4 files changed, 4 insertions(+), 8 deletions(-) > > diff --git a/common/image-fdt.c b/common/image-fdt.c > index 2e22cca..6f9ce7d 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; > } Not that I care, this is fine with me. Was just wondering if this cast is needed at all. AFAIK it is a cpp thing (and MSVC?) to require it. Regards, Jeroen