[PATCH v2 2/2] ARM: smp_scu: remove __init annotation from scu_enable()
From: Shawn Guo <hidden>
Date: 2011-09-17 08:32:37
From: Shawn Guo <hidden>
Date: 2011-09-17 08:32:37
On Tue, Sep 06, 2011 at 01:48:27PM +0800, Shawn Guo wrote:
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> ---
Hi Russell, Do you have any comment on this patch? Can I put it into patch tracker? Regards, Shawn
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