From: Yingjoe Chen Date: Mon, 18 May 2015 08:06:13 +0000 (+0100) Subject: ARM: 8360/1: add secondary_startup_arm prototype in header file X-Git-Tag: v4.2-rc1~96^2~7^3~9 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=29d2e5631ca25fc45d68373817cd3f2b5ee7d8d0;p=uclinux-h8%2Flinux.git ARM: 8360/1: add secondary_startup_arm prototype in header file Put secondary_startup_arm() prototype in arch/arm/include/asm/smp.h so users doesn't have to add extern prototype in their code. Signed-off-by: Yingjoe Chen Reviewed-by: Matthias Brugger Signed-off-by: Russell King --- diff --git a/arch/arm/include/asm/smp.h b/arch/arm/include/asm/smp.h index 18f5a554134f..f5cffb76fc90 100644 --- a/arch/arm/include/asm/smp.h +++ b/arch/arm/include/asm/smp.h @@ -69,6 +69,7 @@ struct secondary_data { extern struct secondary_data secondary_data; extern volatile int pen_release; extern void secondary_startup(void); +extern void secondary_startup_arm(void); extern int __cpu_disable(void);