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 <yingjoe.chen@mediatek.com>
Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
Yingjoe Chen 2015-05-18 09:06:13 +01:00 committed by Russell King
parent c07b5fd026
commit 29d2e5631c

View File

@ -69,6 +69,7 @@ struct secondary_data {
extern struct secondary_data secondary_data; extern struct secondary_data secondary_data;
extern volatile int pen_release; extern volatile int pen_release;
extern void secondary_startup(void); extern void secondary_startup(void);
extern void secondary_startup_arm(void);
extern int __cpu_disable(void); extern int __cpu_disable(void);