aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-exynos
diff options
context:
space:
mode:
authorKukjin Kim <kgene.kim@samsung.com>2012-12-06 01:31:10 -0500
committerKukjin Kim <kgene.kim@samsung.com>2012-12-18 22:00:25 -0500
commit12fee1949e2b302009026ce28e4ef6fac721d7ea (patch)
tree7dc3adcc5d39be9909abb5d1d2baf9ec3a48866b /arch/arm/mach-exynos
parentade7ffbb9b6f2ab65e69496bc4076e215e2cd8ba (diff)
ARM: EXYNOS: fix GIC using for EXYNOS5440
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-exynos')
-rw-r--r--arch/arm/mach-exynos/common.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/common.c b/arch/arm/mach-exynos/common.c
index ddd4b72c6f9a..d6d0dc651089 100644
--- a/arch/arm/mach-exynos/common.c
+++ b/arch/arm/mach-exynos/common.c
@@ -679,7 +679,8 @@ void __init exynos5_init_irq(void)
679 * Theses parameters should be NULL and 0 because EXYNOS4 679 * Theses parameters should be NULL and 0 because EXYNOS4
680 * uses GIC instead of VIC. 680 * uses GIC instead of VIC.
681 */ 681 */
682 s5p_init_irq(NULL, 0); 682 if (!of_machine_is_compatible("samsung,exynos5440"))
683 s5p_init_irq(NULL, 0);
683 684
684 gic_arch_extn.irq_set_wake = s3c_irq_wake; 685 gic_arch_extn.irq_set_wake = s3c_irq_wake;
685} 686}