diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2012-01-18 13:41:09 +0000 |
---|---|---|
committer | Marc Zyngier <marc.zyngier@arm.com> | 2012-02-22 18:36:43 +0000 |
commit | b6f188611659d167b6284d43116b9b2ea542cacf (patch) | |
tree | 83c36d160d91496740248e71c38aaf8ae86eca7d /arch/arm/plat-mxc | |
parent | bb54447ace2ee892982f0f576307998d84bf854a (diff) |
ARM: hotplug: Introduce dummy_cpu_disable
Most platforms don't implement their cpu_disable method.
Some because they simply don't offer the capability, some other
because nobody cared enough to implement the necessary code.
Either way, this code is duplicated all over the place. Implement
a global dummy_cpu_disable method and convert all SMP (but shmobile)
to use it. Hopefully the "dummy" prefix will be an insentive
for people to do the right thing.
Diffstat (limited to 'arch/arm/plat-mxc')
-rw-r--r-- | arch/arm/plat-mxc/include/mach/common.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm/plat-mxc/include/mach/common.h b/arch/arm/plat-mxc/include/mach/common.h index 08b241cd0a5d..c0d0a21fbc9c 100644 --- a/arch/arm/plat-mxc/include/mach/common.h +++ b/arch/arm/plat-mxc/include/mach/common.h @@ -134,7 +134,6 @@ extern int imx6q_set_lpm(enum mxc_cpu_pwr_mode mode); extern void imx6q_clock_map_io(void); extern void imx_cpu_die(unsigned int cpu); -extern int imx_cpu_disable(unsigned int cpu); #ifdef CONFIG_PM extern void imx6q_pm_init(void); |