Replace u16 and u32 with uint16_t and uint32_t so that the tools/bootconfig only needs <stdint.h>. Link: https://lkml.kernel.org/r/163187298835.2366983.9838262576854319669.stgit@devnote2 Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
15 lines
231 B
C
15 lines
231 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _SKC_LINUX_KERNEL_H
|
|
#define _SKC_LINUX_KERNEL_H
|
|
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#define unlikely(cond) (cond)
|
|
|
|
#define __init
|
|
#define __initdata
|
|
|
|
#endif
|