/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _KERNEL_H #define _KERNEL_H #include "../../include/linux/kernel.h" #include <string.h> #include <stdio.h> #include <limits.h> #include <linux/compiler.h> #include <linux/err.h> #include <linux/bitops.h> #include <linux/log2.h> #include "../../../include/linux/kconfig.h" #define printk printf #define pr_debug printk #define pr_cont printk #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) #endif /* _KERNEL_H */Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Matthew Wilcox | 52 | 92.86% | 6 | 75.00% |
Ross Zwisler | 3 | 5.36% | 1 | 12.50% |
Greg Kroah-Hartman | 1 | 1.79% | 1 | 12.50% |
Total | 56 | 100.00% | 8 | 100.00% |