diff options
author | Christopher Ferris <cferris@google.com> | 2021-02-19 19:47:44 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2021-02-19 19:47:44 +0000 |
commit | d29cac66b426d59afd7ce7da9519b6d43f5df0cc (patch) | |
tree | 64fdb7e0316c8d85bb02e4d0dcef0a5f6cd6e6f5 /libc/kernel/uapi/linux/kernel.h | |
parent | b69a0d496930b1faf2559ce268064bc1a005215e (diff) | |
parent | 05667cd66a3ea0e75611f1bec36a67098ac92179 (diff) |
Merge "Update to v5.11 kernel headers."
Diffstat (limited to 'libc/kernel/uapi/linux/kernel.h')
-rw-r--r-- | libc/kernel/uapi/linux/kernel.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libc/kernel/uapi/linux/kernel.h b/libc/kernel/uapi/linux/kernel.h index 000cd30a2..7506a41f2 100644 --- a/libc/kernel/uapi/linux/kernel.h +++ b/libc/kernel/uapi/linux/kernel.h @@ -19,7 +19,5 @@ #ifndef _UAPI_LINUX_KERNEL_H #define _UAPI_LINUX_KERNEL_H #include <linux/sysinfo.h> -#define __ALIGN_KERNEL(x,a) __ALIGN_KERNEL_MASK(x, (typeof(x)) (a) - 1) -#define __ALIGN_KERNEL_MASK(x,mask) (((x) + (mask)) & ~(mask)) -#define __KERNEL_DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) +#include <linux/const.h> #endif |