[PATCH 3/3] ARM: smp_scu: remove __init annotation from scu_enable()
From: Shawn Guo <hidden>
Date: 2011-08-30 07:40:17
Subsystem:
arm port, the rest · Maintainers:
Russell King, Linus Torvalds
From: Shawn Guo <hidden>
Date: 2011-08-30 07:40:17
Subsystem:
arm port, the rest · Maintainers:
Russell King, Linus Torvalds
When Cortex-A9 MPCore resumes from Dormant or Shutdown modes, SCU needs to be re-enabled. This patch removes __init annotation from function scu_enable(), so that platform resume procedure can call it to re-enable SCU. Signed-off-by: Shawn Guo <redacted> --- arch/arm/kernel/smp_scu.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/arm/kernel/smp_scu.c b/arch/arm/kernel/smp_scu.c
index 79ed5e7..5b6d536 100644
--- a/arch/arm/kernel/smp_scu.c
+++ b/arch/arm/kernel/smp_scu.c@@ -33,7 +33,7 @@ unsigned int __init scu_get_core_count(void __iomem *scu_base) /* * Enable the SCU */ -void __init scu_enable(void __iomem *scu_base) +void scu_enable(void __iomem *scu_base) { u32 scu_ctrl;
--
1.7.4.1