mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/
synced 2026-04-23 17:02:06 -04:00
Print all error message in stderr. This also removes unneeded tools/bootconfig/include/linux/printk.h. Link: https://lkml.kernel.org/r/163187298106.2366983.15210300267326257397.stgit@devnote2 Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
17 lines
268 B
C
17 lines
268 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _SKC_LINUX_KERNEL_H
|
|
#define _SKC_LINUX_KERNEL_H
|
|
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
|
|
typedef unsigned short u16;
|
|
typedef unsigned int u32;
|
|
|
|
#define unlikely(cond) (cond)
|
|
|
|
#define __init
|
|
#define __initdata
|
|
|
|
#endif
|