blob: 426f32f2854706d4ec570d92efb8988fae275200 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Matthew Wilcox1366c372016-03-17 14:21:45 -07002#ifndef _KERNEL_H
3#define _KERNEL_H
4
Matthew Wilcoxab3a1ff2016-12-16 15:11:05 -05005#include "../../include/linux/kernel.h"
Matthew Wilcox1366c372016-03-17 14:21:45 -07006#include <string.h>
7#include <stdio.h>
Matthew Wilcox1366c372016-03-17 14:21:45 -07008#include <limits.h>
9
Matthew Wilcoxc68a2aa2016-12-16 11:52:43 -050010#include <linux/compiler.h>
11#include <linux/err.h>
12#include <linux/bitops.h>
13#include <linux/log2.h>
Ross Zwisler21ef5332016-05-20 17:02:26 -070014#include "../../../include/linux/kconfig.h"
Matthew Wilcoxd42cb1a2016-05-20 17:01:39 -070015
Matthew Wilcox1366c372016-03-17 14:21:45 -070016#define printk printf
Matthew Wilcoxf518b162016-05-20 17:01:36 -070017#define pr_debug printk
Matthew Wilcox0a835c42016-12-20 10:27:56 -050018#define pr_cont printk
Matthew Wilcoxf518b162016-05-20 17:01:36 -070019
Matthew Wilcox1366c372016-03-17 14:21:45 -070020#endif /* _KERNEL_H */