public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] image.h: Change android_image_get_dtb* to use uint and not u32
@ 2020-02-14 17:38 Tom Rini
  2020-02-16 16:23 ` Eugeniu Rosca
  0 siblings, 1 reply; 7+ messages in thread
From: Tom Rini @ 2020-02-14 17:38 UTC (permalink / raw)
  To: u-boot

The image.h header can be used fairly widely in U-Boot builds.  We
cannot use u32 here as it may be used in cases where we don't have that
typedef available and don't want to expose it either.  Use uint instead
here.

Cc: Eugeniu Rosca <roscaeugeniu@gmail.com>
Cc: Sam Protsenko <joe.skb7@gmail.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
---
 include/image.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/image.h b/include/image.h
index b316d167d8d7..1dc3b48d8689 100644
--- a/include/image.h
+++ b/include/image.h
@@ -1425,9 +1425,9 @@ int android_image_get_ramdisk(const struct andr_img_hdr *hdr,
 			      ulong *rd_data, ulong *rd_len);
 int android_image_get_second(const struct andr_img_hdr *hdr,
 			      ulong *second_data, ulong *second_len);
-bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size);
-bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
-				    u32 *size);
+bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, uint *size);
+bool android_image_get_dtb_by_index(ulong hdr_addr, uint index, ulong *addr,
+				    uint *size);
 ulong android_image_get_end(const struct andr_img_hdr *hdr);
 ulong android_image_get_kload(const struct andr_img_hdr *hdr);
 ulong android_image_get_kcomp(const struct andr_img_hdr *hdr);
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-02-17 17:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-14 17:38 [PATCH] image.h: Change android_image_get_dtb* to use uint and not u32 Tom Rini
2020-02-16 16:23 ` Eugeniu Rosca
2020-02-16 16:53   ` Tom Rini
2020-02-16 22:04     ` Eugeniu Rosca
2020-02-17  7:45       ` Masahiro Yamada
2020-02-17 10:47         ` Eugeniu Rosca
2020-02-17 17:35         ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox