Merge tag 'zynqmp-soc-for-v5.7' of https://github.com/Xilinx/linux-xlnx into arm/soc
[linux-2.6-microblaze.git] / tools / bootconfig / include / linux / printk.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _SKC_LINUX_PRINTK_H
3 #define _SKC_LINUX_PRINTK_H
4
5 #include <stdio.h>
6
7 #define printk(fmt, ...) printf(fmt, ##__VA_ARGS__)
8
9 #define pr_err printk
10 #define pr_warn printk
11 #define pr_info printk
12 #define pr_debug printk
13
14 #endif