dect
/
linux-2.6
Archived
13
0
Fork 0

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 <boojin.kim@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
Boojin Kim 2010-06-26 16:36:43 +09:00 committed by Kukjin Kim
parent 815c4163b6
commit 79fc72d6d3
1 changed files with 1 additions and 1 deletions

View File

@ -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: