diff options
author | Yingjoe Chen <yingjoe.chen@mediatek.com> | 2015-05-18 09:06:13 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2015-06-02 09:58:16 +0100 |
commit | 29d2e5631ca25fc45d68373817cd3f2b5ee7d8d0 (patch) | |
tree | 1652e1319d421420e97aaf052629262dcf478a1f /arch/arm/include | |
parent | c07b5fd0268fc2bbaa584548d437f763d20bde77 (diff) | |
download | blackbird-obmc-linux-29d2e5631ca25fc45d68373817cd3f2b5ee7d8d0.tar.gz blackbird-obmc-linux-29d2e5631ca25fc45d68373817cd3f2b5ee7d8d0.zip |
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>
Diffstat (limited to 'arch/arm/include')
-rw-r--r-- | arch/arm/include/asm/smp.h | 1 |
1 files changed, 1 insertions, 0 deletions
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); |