diff options
author | Tomasz Figa <tomasz.figa@gmail.com> | 2013-01-09 19:45:51 -0500 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2013-01-10 13:45:41 -0500 |
commit | 3a71c5c375e29fc9c1493b5ead1cf36572139c3e (patch) | |
tree | bbc414af5d66294f1b7786db7e37dd538241fded /arch/arm | |
parent | e8f55885f8e2af0ff960a15e03d0e616e7bdb5f6 (diff) |
ARM: S3C64XX: Fix missing header error with CONFIG_CPU_IDLE enabled
Recently the regs-syscon-power.h header was moved from
mach-s3c64xx/include/mach to mach-s3c64xx/, but cpuidle.c was not
updated to include the header from its new location, which caused
build error with CONFIG_CPU_IDLE enabled.
This patch fixed the problem by updating the include line with
proper header location.
Signed-off-by: Tomasz Figa <tomasz.figa@gmail.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-s3c64xx/cpuidle.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-s3c64xx/cpuidle.c b/arch/arm/mach-s3c64xx/cpuidle.c index e3e455b87961..ead5fab0dbb5 100644 --- a/arch/arm/mach-s3c64xx/cpuidle.c +++ b/arch/arm/mach-s3c64xx/cpuidle.c | |||
@@ -20,9 +20,8 @@ | |||
20 | 20 | ||
21 | #include <mach/map.h> | 21 | #include <mach/map.h> |
22 | 22 | ||
23 | #include <mach/regs-syscon-power.h> | ||
24 | |||
25 | #include "regs-sys.h" | 23 | #include "regs-sys.h" |
24 | #include "regs-syscon-power.h" | ||
26 | 25 | ||
27 | static int s3c64xx_enter_idle(struct cpuidle_device *dev, | 26 | static int s3c64xx_enter_idle(struct cpuidle_device *dev, |
28 | struct cpuidle_driver *drv, | 27 | struct cpuidle_driver *drv, |