diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2012-04-26 13:08:52 (GMT) |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2012-05-08 12:36:24 (GMT) |
commit | cc8f252b713e9c7170bcf6346638dbf6d489d775 (patch) | |
tree | e205665a978789b256a37906b3272688ca889224 /arch/arm/mach-s3c64xx/pm.c | |
parent | a4b4674e26da6b2c40f5b6485e165beb8f68d335 (diff) | |
download | linux-cc8f252b713e9c7170bcf6346638dbf6d489d775.tar.xz |
ARM: s3c64xx: use machine specific hook for late init
Cc: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Acked-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-s3c64xx/pm.c')
-rw-r--r-- | arch/arm/mach-s3c64xx/pm.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-s3c64xx/pm.c b/arch/arm/mach-s3c64xx/pm.c index 7d3e81b..7feb426 100644 --- a/arch/arm/mach-s3c64xx/pm.c +++ b/arch/arm/mach-s3c64xx/pm.c @@ -365,10 +365,9 @@ static __init int s3c64xx_pm_initcall(void) } arch_initcall(s3c64xx_pm_initcall); -static __init int s3c64xx_pm_late_initcall(void) +int __init s3c64xx_pm_late_initcall(void) { pm_genpd_poweroff_unused(); return 0; } -late_initcall(s3c64xx_pm_late_initcall); |