From: Boojin Kim Date: Sat, 26 Jun 2010 07:36:43 +0000 (+0900) Subject: ARM: S5P: Bug fix on external interrupt for S5P SoCs X-Git-Tag: v2.6.35-rc5~13^2~4 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=79fc72d6d3ab4ee08068fe39c199aab2e677daaa;p=~shefty%2Frdma-dev.git ARM: S5P: Bug fix on external interrupt for S5P SoCs This patch fixes bug on eint type set function, s5p_irq_eint_set_type(). In the IRQ_TYPE_EDGE_FALLING case, S5P_EXTINT_FALLEDGE is right instead of S5P_EXTINT_RISEEDGE Signed-off-by: Boojin Kim Signed-off-by: Kukjin Kim --- diff --git a/arch/arm/plat-s5p/irq-eint.c b/arch/arm/plat-s5p/irq-eint.c index e56c8075df9..f36cd332702 100644 --- a/arch/arm/plat-s5p/irq-eint.c +++ b/arch/arm/plat-s5p/irq-eint.c @@ -71,7 +71,7 @@ static int s5p_irq_eint_set_type(unsigned int irq, unsigned int type) break; case IRQ_TYPE_EDGE_FALLING: - newvalue = S5P_EXTINT_RISEEDGE; + newvalue = S5P_EXTINT_FALLEDGE; break; case IRQ_TYPE_EDGE_BOTH: