aboutsummaryrefslogtreecommitdiff
path: root/arch/arm/mach-exynos/include/mach/pm-core.h
diff options
context:
space:
mode:
authorJonathan Kliegman <kliegs@chromium.org>2013-04-04 15:15:43 +0900
committerKukjin Kim <kgene.kim@samsung.com>2013-04-04 15:15:43 +0900
commit672b6829e7290cb4e51987fdcb1078f4eee6546c (patch)
treed4e4603f416e371244154b0a554f2c0685a57267 /arch/arm/mach-exynos/include/mach/pm-core.h
parent9f3706742934e9aa500185eb40b78497dc1ec7cb (diff)
ARM: EXYNOS: Remove hardcode wakeup unmask for EINT_0
For legacy reasons EINT_0 was being forced on for all exynos systems as a wake interrupt. For boards that need EINT_0 they should probably enable it with enable_irq_wake Signed-off-by: Jonathan Kliegman <kliegs@chromium.org> Signed-off-by: Doug Anderson <dianders@chromium.org> Reviewed-by: Doug Anderson <dianders@chromium.org> Reviewed-by: Thomas Abraham <thomas.ab@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-exynos/include/mach/pm-core.h')
-rw-r--r--arch/arm/mach-exynos/include/mach/pm-core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/include/mach/pm-core.h b/arch/arm/mach-exynos/include/mach/pm-core.h
index a67ecfaf121..9d8da51e35c 100644
--- a/arch/arm/mach-exynos/include/mach/pm-core.h
+++ b/arch/arm/mach-exynos/include/mach/pm-core.h
@@ -33,7 +33,7 @@ static inline void s3c_pm_arch_prepare_irqs(void)
__raw_writel(tmp, S5P_WAKEUP_MASK);
__raw_writel(s3c_irqwake_intmask, S5P_WAKEUP_MASK);
- __raw_writel(s3c_irqwake_eintmask & 0xFFFFFFFE, S5P_EINT_WAKEUP_MASK);
+ __raw_writel(s3c_irqwake_eintmask, S5P_EINT_WAKEUP_MASK);
}
static inline void s3c_pm_arch_stop_clocks(void)