diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-06-18 12:36:56 -0400 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2013-06-18 12:37:53 -0400 |
commit | 564d06b1266ee62c9b47eab8305755e5ff6e38d5 (patch) | |
tree | 1b2c2eb445fe1ae3af50eedeb19d4e0558535e6e /arch/arm/mach-exynos/include | |
parent | 87107d89052bcec1fe91b309631de4ed294a5171 (diff) |
ARM: EXYNOS: Remove remaining dead code after non-DT support removal
This patch removes remaining small bits of unused code that was left
after removing non-DT support.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Tomasz Figa <t.figa@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-exynos/include')
-rw-r--r-- | arch/arm/mach-exynos/include/mach/pm-core.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/arm/mach-exynos/include/mach/pm-core.h b/arch/arm/mach-exynos/include/mach/pm-core.h index 71e6b89719ab..2b00833b6641 100644 --- a/arch/arm/mach-exynos/include/mach/pm-core.h +++ b/arch/arm/mach-exynos/include/mach/pm-core.h | |||
@@ -34,12 +34,7 @@ static inline void s3c_pm_debug_init_uart(void) | |||
34 | 34 | ||
35 | static inline void s3c_pm_arch_prepare_irqs(void) | 35 | static inline void s3c_pm_arch_prepare_irqs(void) |
36 | { | 36 | { |
37 | u32 eintmask = s3c_irqwake_eintmask; | 37 | __raw_writel(exynos_get_eint_wake_mask(), S5P_EINT_WAKEUP_MASK); |
38 | |||
39 | if (of_have_populated_dt()) | ||
40 | eintmask = exynos_get_eint_wake_mask(); | ||
41 | |||
42 | __raw_writel(eintmask, S5P_EINT_WAKEUP_MASK); | ||
43 | __raw_writel(s3c_irqwake_intmask & ~(1 << 31), S5P_WAKEUP_MASK); | 38 | __raw_writel(s3c_irqwake_intmask & ~(1 << 31), S5P_WAKEUP_MASK); |
44 | } | 39 | } |
45 | 40 | ||