summaryrefslogtreecommitdiff
path: root/system/easy-kernel/kernel.h
diff options
context:
space:
mode:
authorSamuel Holland <samuel@sholland.org>2019-12-08 23:40:04 -0600
committerSamuel Holland <samuel@sholland.org>2019-12-19 22:28:09 -0600
commitc0a24f212630c322ffda6ff503c3f05cf7b4dd50 (patch)
tree7a39427ed70a9c9cc898fba042e849f79b40fee6 /system/easy-kernel/kernel.h
parent4f574cf5149b940d297b977a4f7b8073aa40cf32 (diff)
downloadpackages-c0a24f212630c322ffda6ff503c3f05cf7b4dd50.tar.gz
packages-c0a24f212630c322ffda6ff503c3f05cf7b4dd50.tar.bz2
packages-c0a24f212630c322ffda6ff503c3f05cf7b4dd50.tar.xz
packages-c0a24f212630c322ffda6ff503c3f05cf7b4dd50.zip
system/easy-kernel: bump to 5.4.5
Just an olddefconfig. Signed-off-by: Samuel Holland <samuel@sholland.org>
Diffstat (limited to 'system/easy-kernel/kernel.h')
-rw-r--r--system/easy-kernel/kernel.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/system/easy-kernel/kernel.h b/system/easy-kernel/kernel.h
deleted file mode 100644
index b2d59deef..000000000
--- a/system/easy-kernel/kernel.h
+++ /dev/null
@@ -1,17 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
-#ifndef _UAPI_LINUX_KERNEL_H
-#define _UAPI_LINUX_KERNEL_H
-
-#ifdef __GLIBC__
-#include <linux/sysinfo.h>
-#endif
-
-/*
- * 'kernel.h' contains some often-used function prototypes etc
- */
-#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))
-
-#endif /* _UAPI_LINUX_KERNEL_H */