diff options
author | Nicolas Pitre <nicolas.pitre@linaro.org> | 2011-08-03 15:34:59 (GMT) |
---|---|---|
committer | Nicolas Pitre <nico@fluxnic.net> | 2012-01-20 23:55:13 (GMT) |
commit | 92311272c1a5148e5e19d0ebc9acda0ed978fba7 (patch) | |
tree | e19b240e158378b12b5a6565cb29c55f0386ec2b /arch/arm/mach-s3c2412 | |
parent | 50edbf78f566bcb7749c558129a849c63ae15838 (diff) | |
download | linux-92311272c1a5148e5e19d0ebc9acda0ed978fba7.tar.xz |
ARM: s3c24xx: move special idle code to out of line
... and hook it to arm_pm_idle.
Signed-off-by: Nicolas Pitre <nicolas.pitre@linaro.org>
Diffstat (limited to 'arch/arm/mach-s3c2412')
-rw-r--r-- | arch/arm/mach-s3c2412/s3c2412.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/arm/mach-s3c2412/s3c2412.c b/arch/arm/mach-s3c2412/s3c2412.c index aff6e85..c6eac98 100644 --- a/arch/arm/mach-s3c2412/s3c2412.c +++ b/arch/arm/mach-s3c2412/s3c2412.c @@ -32,8 +32,6 @@ #include <asm/proc-fns.h> #include <asm/irq.h> -#include <mach/idle.h> - #include <plat/cpu-freq.h> #include <mach/regs-clock.h> @@ -164,7 +162,7 @@ void __init s3c2412_map_io(void) /* set our idle function */ - s3c24xx_idle = s3c2412_idle; + arm_pm_idle = s3c2412_idle; /* register our io-tables */ |