From 8e6163246531e860b98c12b8aec94cc7899e4c33 Mon Sep 17 00:00:00 2001 From: Christian Lamparter Date: Wed, 23 Nov 2011 22:07:04 +0100 Subject: [PATCH] carl9170 firmware: add __be{16,32,64} typedefs Signed-off-by: Christian Lamparter --- include/linux/types.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/linux/types.h b/include/linux/types.h index 206ef0c..3f45f0f 100644 --- a/include/linux/types.h +++ b/include/linux/types.h @@ -54,4 +54,8 @@ typedef int64_t __s64; #define cpu_to_le64(x) ((__le64)(uint64_t)(x)) #define le64_to_cpu(x) ((uint64_t)(__le64)(x)) +typedef uint16_t __be16; +typedef uint32_t __be32; +typedef uint64_t __be64; + #endif /* __LINUX_TYPES_H */ -- 2.31.1