Re: [U-Boot] [PATCH] FIT: delete unnecessary casts

2013-09-18 Thread Masahiro Yamada
Simon, Thanks for your review. I noticed a strange part in my commit log and posted v2 with a purely cosmetic update. s/img_addr/the argument/ Best Regards Masahiro Yamada ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/lis

Re: [U-Boot] [PATCH] FIT: delete unnecessary casts

2013-09-18 Thread Simon Glass
On Tue, Sep 17, 2013 at 6:58 PM, Masahiro Yamada wrote: > Becuase fdt_check_header function takes (const void *) > type argument, img_addr should be passed to it > without being casted to (char *). > > Signed-off-by: Masahiro Yamada > Looks right to me. Acked-by: Simon Glass __

[U-Boot] [PATCH] FIT: delete unnecessary casts

2013-09-17 Thread Masahiro Yamada
Becuase fdt_check_header function takes (const void *) type argument, img_addr should be passed to it without being casted to (char *). Signed-off-by: Masahiro Yamada --- common/image-fdt.c | 2 +- common/image-fit.c | 2 +- common/image.c | 6 +- tools/fit_image.c | 2 +- 4 files chang