diff mbox series

[U-Boot,19/21] Add UINT32_MAX and UINT64_MAX

Message ID 20181124042944.239106-20-sjg@chromium.org
State Accepted
Commit 277f4eb2e88ba64e0926b189f99d548069089160
Delegated to: Simon Glass
Headers show
Series Various patches for verified boot support | expand

Commit Message

Simon Glass Nov. 24, 2018, 4:29 a.m. UTC
These constants are defined by stdint.h but not by kernel.h, which is
its stand-in in U-Boot. Add the definitions so that libraries which expect
stdint.h constants can work.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 include/linux/kernel.h | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Simon Glass Dec. 5, 2018, 11:10 p.m. UTC | #1
These constants are defined by stdint.h but not by kernel.h, which is
its stand-in in U-Boot. Add the definitions so that libraries which expect
stdint.h constants can work.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 include/linux/kernel.h | 4 ++++
 1 file changed, 4 insertions(+)

Applied to u-boot-dm/master, thanks!
diff mbox series

Patch

diff --git a/include/linux/kernel.h b/include/linux/kernel.h
index 04a09eb4f64..bd88483b9f6 100644
--- a/include/linux/kernel.h
+++ b/include/linux/kernel.h
@@ -33,6 +33,10 @@ 
 #define S64_MAX		((s64)(U64_MAX>>1))
 #define S64_MIN		((s64)(-S64_MAX - 1))
 
+/* Aliases defined by stdint.h */
+#define UINT32_MAX	U32_MAX
+#define UINT64_MAX	U64_MAX
+
 #define STACK_MAGIC	0xdeadbeef
 
 #define REPEAT_BYTE(x)	((~0ul / 0xff) * (x))