Commit c82a5cb8 authored by Jan Engelhardt's avatar Jan Engelhardt Committed by David S. Miller

linux/types.h: Use __u64 for aligned_u64

Signed-off-by: default avatarJan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2fd8e526
...@@ -126,7 +126,7 @@ typedef __s64 int64_t; ...@@ -126,7 +126,7 @@ typedef __s64 int64_t;
#endif #endif
/* this is a special 64bit data type that is 8-byte aligned */ /* this is a special 64bit data type that is 8-byte aligned */
#define aligned_u64 unsigned long long __attribute__((aligned(8))) #define aligned_u64 __u64 __attribute__((aligned(8)))
#define aligned_be64 __be64 __attribute__((aligned(8))) #define aligned_be64 __be64 __attribute__((aligned(8)))
#define aligned_le64 __le64 __attribute__((aligned(8))) #define aligned_le64 __le64 __attribute__((aligned(8)))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment