From: Andrew Morton Date: Mon, 29 Apr 2013 23:17:19 +0000 (-0700) Subject: include/linux/printk.h: include stdarg.h X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=1b2c289b4f9018f4bd54d22ab54aaeda9181cd2a;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git include/linux/printk.h: include stdarg.h printk.h uses va_list but doesn't include stdarg.h. Hence printk.h is unusable unless its includer has already included kernel.h (which includes stdarg.h). Remove the dependency by including stdarg.h in printk.h Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/printk.h b/include/linux/printk.h index 1c35c23bccd7..4890fe62c011 100644 --- a/include/linux/printk.h +++ b/include/linux/printk.h @@ -1,6 +1,7 @@ #ifndef __KERNEL_PRINTK__ #define __KERNEL_PRINTK__ +#include #include #include