Skip to content

Commit

Permalink
ARM: S5P: Bug fix on external interrupt for S5P SoCs
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Boojin Kim authored and Kukjin Kim committed Jul 5, 2010
1 parent 815c416 commit 79fc72d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/plat-s5p/irq-eint.c
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 79fc72d

Please sign in to comment.