hc
2024-09-20 a36159eec6ca17402b0e146b86efaf76568dc353
kernel/include/vdso/bits.h
....@@ -2,6 +2,8 @@
22 #ifndef __VDSO_BITS_H
33 #define __VDSO_BITS_H
44
5
-#define BIT(nr) (1UL << (nr))
5
+#include <vdso/const.h>
6
+
7
+#define BIT(nr) (UL(1) << (nr))
68
79 #endif /* __VDSO_BITS_H */