From: AKASHI Takahiro Date: Wed, 13 Nov 2019 00:44:51 +0000 (+0900) Subject: include: kernel.h: include printk.h X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=29852bfc2296152baf31958092eb1f7384359185;p=u-boot.git include: kernel.h: include printk.h Adding "printk.h" will help improve portability from linux kernel code (in my case, lib/asn1_decoder.c and others) where printf and pr_* variant functions are used. Signed-off-by: AKASHI Takahiro --- diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 5c7e5f635b..564819a1c0 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h @@ -1,8 +1,8 @@ #ifndef _LINUX_KERNEL_H #define _LINUX_KERNEL_H - #include +#include /* for printf/pr_* utilities */ #define USHRT_MAX ((u16)(~0U)) #define SHRT_MAX ((s16)(USHRT_MAX>>1))