Skip to content

Commit

Permalink
ARM: EXYNOS: fix GIC using for EXYNOS5440
Browse files Browse the repository at this point in the history
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
  • Loading branch information
Kukjin Kim committed Dec 19, 2012
1 parent ade7ffb commit 12fee19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arch/arm/mach-exynos/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,8 @@ void __init exynos5_init_irq(void)
* Theses parameters should be NULL and 0 because EXYNOS4
* uses GIC instead of VIC.
*/
s5p_init_irq(NULL, 0);
if (!of_machine_is_compatible("samsung,exynos5440"))
s5p_init_irq(NULL, 0);

gic_arch_extn.irq_set_wake = s3c_irq_wake;
}
Expand Down

0 comments on commit 12fee19

Please sign in to comment.