From 309544ed4c3b4b1222459cfae4de9189ddc9a916 Mon Sep 17 00:00:00 2001 From: Joakim Tjernlund Date: Mon, 20 Feb 2017 14:24:49 +0100 Subject: [PATCH 1/2] Correct function definition for C++ C++ does does not like the extra extern before asmlinkage, remove it. Signed-off-by: Joakim Tjernlund --- include/linux/printk.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/linux/printk.h b/include/linux/printk.h index 3472cc6..be823f5 100644 --- a/include/linux/printk.h +++ b/include/linux/printk.h @@ -139,7 +139,7 @@ struct va_format { }) #ifdef CONFIG_EARLY_PRINTK -extern asmlinkage __printf(1, 2) +asmlinkage __printf(1, 2) void early_printk(const char *fmt, ...); #else static inline __printf(1, 2) __cold @@ -270,7 +270,7 @@ static inline void show_regs_print_info(const char *log_lvl) } #endif -extern asmlinkage void dump_stack(void) __cold; +asmlinkage void dump_stack(void) __cold; #ifndef pr_fmt #define pr_fmt(fmt) fmt -- 2.10.2