Re: [PATCH] image.h: use uint32_t instead of u32 in android_image_get_dtb*

2020-03-09 Thread Eugeniu Rosca
To facilitate tracking, this patch has been superseded by: https://patchwork.ozlabs.org/patch/1250963/ ("image.h: isolate android_image_* functions from tooling") -- Best Regards Eugeniu Rosca

Re: [PATCH] image.h: use uint32_t instead of u32 in android_image_get_dtb*

2020-03-01 Thread Heinrich Schuchardt
On 2/20/20 12:45 PM, Sam Protsenko wrote: Hi Eugeniu, On Mon, Feb 17, 2020 at 12:24 PM Eugeniu Rosca wrote: Replace 'u32' by 'uint32_t' in image.h, since the former may lead to build failures in U-Boot tooling (see [1]). Avoid using 'uint', since it is not a fixed-width type [2], potentially

Re: [PATCH] image.h: use uint32_t instead of u32 in android_image_get_dtb*

2020-02-20 Thread Sam Protsenko
Hi Eugeniu, On Mon, Feb 17, 2020 at 12:24 PM Eugeniu Rosca wrote: > > Replace 'u32' by 'uint32_t' in image.h, since the former may lead to > build failures in U-Boot tooling (see [1]). > > Avoid using 'uint', since it is not a fixed-width type [2], potentially > leading to a dangerous mismatch be

Re: [PATCH] image.h: use uint32_t instead of u32 in android_image_get_dtb*

2020-02-18 Thread Masahiro Yamada
On Mon, Feb 17, 2020 at 7:24 PM Eugeniu Rosca wrote: > > Replace 'u32' by 'uint32_t' in image.h, since the former may lead to > build failures in U-Boot tooling (see [1]). > > Avoid using 'uint', since it is not a fixed-width type [2], potentially > leading to a dangerous mismatch between the prot

[PATCH] image.h: use uint32_t instead of u32 in android_image_get_dtb*

2020-02-17 Thread Eugeniu Rosca
Replace 'u32' by 'uint32_t' in image.h, since the former may lead to build failures in U-Boot tooling (see [1]). Avoid using 'uint', since it is not a fixed-width type [2], potentially leading to a dangerous mismatch between the prototypes and definitions of the android_image_get_dtb* functions.