diff options
author | Magnus Damm <damm@opensource.se> | 2011-12-28 11:47:16 +0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2012-01-09 05:37:24 +0400 |
commit | 8b306796995609c281f6d32b3cbaa814551ad5ac (patch) | |
tree | cc15f092c9493d58004920855ac76fa691e71bd8 /arch/arm/mach-shmobile/platsmp.c | |
parent | f0eab3889e4b5b71e1609c9850f652f06a812cf5 (diff) | |
download | linux-8b306796995609c281f6d32b3cbaa814551ad5ac.tar.xz |
ARM: mach-shmobile: Allow SoC specific CPU kill code
Add the function shmobile_platform_kill_cpu() to allow
SoC specific code to tie in their CPU shutdown code.
Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/arm/mach-shmobile/platsmp.c')
-rw-r--r-- | arch/arm/mach-shmobile/platsmp.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-shmobile/platsmp.c b/arch/arm/mach-shmobile/platsmp.c index c49a833bf9bb..3f3325d4206d 100644 --- a/arch/arm/mach-shmobile/platsmp.c +++ b/arch/arm/mach-shmobile/platsmp.c @@ -37,6 +37,11 @@ static void __init shmobile_smp_prepare_cpus(void) sh73a0_smp_prepare_cpus(); } +int shmobile_platform_cpu_kill(unsigned int cpu) +{ + return 1; +} + void __cpuinit platform_secondary_init(unsigned int cpu) { trace_hardirqs_off(); |