aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/uapi/linux/const.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/uapi/linux/const.h b/include/uapi/linux/const.h
index 09bc0e0e97e3..5ed721ad5b19 100644
--- a/include/uapi/linux/const.h
+++ b/include/uapi/linux/const.h
@@ -25,7 +25,7 @@
25#define _UL(x) (_AC(x, UL)) 25#define _UL(x) (_AC(x, UL))
26#define _ULL(x) (_AC(x, ULL)) 26#define _ULL(x) (_AC(x, ULL))
27 27
28#define _BITUL(x) (_AC(1,UL) << (x)) 28#define _BITUL(x) (_UL(1) << (x))
29#define _BITULL(x) (_AC(1,ULL) << (x)) 29#define _BITULL(x) (_ULL(1) << (x))
30 30
31#endif /* _UAPI_LINUX_CONST_H */ 31#endif /* _UAPI_LINUX_CONST_H */