diff options
author | Shawn Guo <shawn.guo@freescale.com> | 2014-08-31 20:57:20 -0400 |
---|---|---|
committer | Shawn Guo <shawn.guo@freescale.com> | 2014-09-01 10:00:02 -0400 |
commit | ee295d7ff442699bb7982f2283f71eabcc16f367 (patch) | |
tree | 9f30fbee15ce9f1538e69939cfdebdb6390be896 /arch/arm/mach-imx/platsmp.c | |
parent | 1ca7070d1d08e71692295ed06c6cb6331ecac3c8 (diff) |
ARM: imx: remove imx_scu_standby_enable()
With commit c716483c3db1 ("ARM: 8122/1: smp_scu: enable SCU standby
support"), the STANDBY bit of SCU is handled by core function
scu_enable(). So imx_scu_standby_enable() can be removed now.
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
Diffstat (limited to 'arch/arm/mach-imx/platsmp.c')
-rw-r--r-- | arch/arm/mach-imx/platsmp.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/arch/arm/mach-imx/platsmp.c b/arch/arm/mach-imx/platsmp.c index 5b57c17c06bd..771bd25c1025 100644 --- a/arch/arm/mach-imx/platsmp.c +++ b/arch/arm/mach-imx/platsmp.c | |||
@@ -20,8 +20,6 @@ | |||
20 | #include "common.h" | 20 | #include "common.h" |
21 | #include "hardware.h" | 21 | #include "hardware.h" |
22 | 22 | ||
23 | #define SCU_STANDBY_ENABLE (1 << 5) | ||
24 | |||
25 | u32 g_diag_reg; | 23 | u32 g_diag_reg; |
26 | static void __iomem *scu_base; | 24 | static void __iomem *scu_base; |
27 | 25 | ||
@@ -45,14 +43,6 @@ void __init imx_scu_map_io(void) | |||
45 | scu_base = IMX_IO_ADDRESS(base); | 43 | scu_base = IMX_IO_ADDRESS(base); |
46 | } | 44 | } |
47 | 45 | ||
48 | void imx_scu_standby_enable(void) | ||
49 | { | ||
50 | u32 val = readl_relaxed(scu_base); | ||
51 | |||
52 | val |= SCU_STANDBY_ENABLE; | ||
53 | writel_relaxed(val, scu_base); | ||
54 | } | ||
55 | |||
56 | static int imx_boot_secondary(unsigned int cpu, struct task_struct *idle) | 46 | static int imx_boot_secondary(unsigned int cpu, struct task_struct *idle) |
57 | { | 47 | { |
58 | imx_set_cpu_jump(cpu, v7_secondary_startup); | 48 | imx_set_cpu_jump(cpu, v7_secondary_startup); |