Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Matthew Wilcox | 1366c37 | 2016-03-17 14:21:45 -0700 | [diff] [blame] | 2 | #ifndef _KERNEL_H |
| 3 | #define _KERNEL_H |
| 4 | |
Matthew Wilcox | ab3a1ff | 2016-12-16 15:11:05 -0500 | [diff] [blame] | 5 | #include "../../include/linux/kernel.h" |
Matthew Wilcox | 1366c37 | 2016-03-17 14:21:45 -0700 | [diff] [blame] | 6 | #include <string.h> |
| 7 | #include <stdio.h> |
Matthew Wilcox | 1366c37 | 2016-03-17 14:21:45 -0700 | [diff] [blame] | 8 | #include <limits.h> |
| 9 | |
Matthew Wilcox | c68a2aa | 2016-12-16 11:52:43 -0500 | [diff] [blame] | 10 | #include <linux/compiler.h> |
| 11 | #include <linux/err.h> |
| 12 | #include <linux/bitops.h> |
| 13 | #include <linux/log2.h> |
Ross Zwisler | 21ef533 | 2016-05-20 17:02:26 -0700 | [diff] [blame] | 14 | #include "../../../include/linux/kconfig.h" |
Matthew Wilcox | d42cb1a | 2016-05-20 17:01:39 -0700 | [diff] [blame] | 15 | |
Matthew Wilcox | 1366c37 | 2016-03-17 14:21:45 -0700 | [diff] [blame] | 16 | #define printk printf |
Matthew Wilcox | f518b16 | 2016-05-20 17:01:36 -0700 | [diff] [blame] | 17 | #define pr_debug printk |
Matthew Wilcox | 0a835c4 | 2016-12-20 10:27:56 -0500 | [diff] [blame] | 18 | #define pr_cont printk |
Matthew Wilcox | f518b16 | 2016-05-20 17:01:36 -0700 | [diff] [blame] | 19 | |
Matthew Wilcox | 1366c37 | 2016-03-17 14:21:45 -0700 | [diff] [blame] | 20 | #endif /* _KERNEL_H */ |