mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 00:30:52 +07:00
15e95037b4
Remove error message silent knob, we don't need it anymore because we can check if there is a bootconfig by checking the magic word. If there is a magic word, but failed to load a bootconfig from initrd, there is a real problem. Link: http://lkml.kernel.org/r/158220113256.26565.14264598654427773104.stgit@devnote2 Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
15 lines
269 B
C
15 lines
269 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _SKC_LINUX_PRINTK_H
|
|
#define _SKC_LINUX_PRINTK_H
|
|
|
|
#include <stdio.h>
|
|
|
|
#define printk(fmt, ...) printf(fmt, ##__VA_ARGS__)
|
|
|
|
#define pr_err printk
|
|
#define pr_warn printk
|
|
#define pr_info printk
|
|
#define pr_debug printk
|
|
|
|
#endif
|