From: Tomasz Figa Date: Thu, 10 Jan 2013 00:45:51 +0000 (-0800) Subject: ARM: S3C64XX: Fix missing header error with CONFIG_CPU_IDLE enabled X-Git-Tag: firefly_0821_release~3680^2~1075^2~13^2 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3a71c5c375e29fc9c1493b5ead1cf36572139c3e;p=firefly-linux-kernel-4.4.55.git 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 Signed-off-by: Kukjin Kim --- 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 @@ #include -#include - #include "regs-sys.h" +#include "regs-syscon-power.h" static int s3c64xx_enter_idle(struct cpuidle_device *dev, struct cpuidle_driver *drv,