summaryrefslogtreecommitdiff
path: root/include/uapi/linux
diff options
context:
space:
mode:
authorUwe Kleine-König <ukleinek@kernel.org>2025-07-09 11:48:21 +0300
committerUwe Kleine-König <ukleinek@kernel.org>2025-07-09 11:48:21 +0300
commit2b2aeaa12c804e52f2ba635899f2b7f2d4623874 (patch)
tree4b7f9abb6af166b70ab177ab0458b8984f005ee2 /include/uapi/linux
parentedd3bcb1801e1bb98f4f81485140e18c86406ced (diff)
parentcd4da713f99651e99fbce8ed6b6ec8f686c029a8 (diff)
downloadlinux-2b2aeaa12c804e52f2ba635899f2b7f2d4623874.tar.xz
Merge tag 'pm-runtime-6.17-rc1' of https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Runtime PM updates related to autosuspend for 6.17 Make several autosuspend functions mark last busy stamp and update the documentation accordingly (Sakari Ailus).
Diffstat (limited to 'include/uapi/linux')
-rw-r--r--include/uapi/linux/bits.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/uapi/linux/bits.h b/include/uapi/linux/bits.h
index 682b406e1067..a04afef9efca 100644
--- a/include/uapi/linux/bits.h
+++ b/include/uapi/linux/bits.h
@@ -4,9 +4,9 @@
#ifndef _UAPI_LINUX_BITS_H
#define _UAPI_LINUX_BITS_H
-#define __GENMASK(h, l) (((~_UL(0)) << (l)) & (~_UL(0) >> (BITS_PER_LONG - 1 - (h))))
+#define __GENMASK(h, l) (((~_UL(0)) << (l)) & (~_UL(0) >> (__BITS_PER_LONG - 1 - (h))))
-#define __GENMASK_ULL(h, l) (((~_ULL(0)) << (l)) & (~_ULL(0) >> (BITS_PER_LONG_LONG - 1 - (h))))
+#define __GENMASK_ULL(h, l) (((~_ULL(0)) << (l)) & (~_ULL(0) >> (__BITS_PER_LONG_LONG - 1 - (h))))
#define __GENMASK_U128(h, l) \
((_BIT128((h)) << 1) - (_BIT128(l)))