Gitweb: http://git.kernel.org/linus/79fc72d6d3ab4ee08068fe39c199aab2e677daaa Commit: 79fc72d6d3ab4ee08068fe39c199aab2e677daaa Parent: 815c4163b6c8ebf8152f42b0a5fd015cfdcedc78 Author: Boojin Kim <boojin.kim@samsung.com> AuthorDate: Sat Jun 26 16:36:43 2010 +0900 Committer: Kukjin Kim <kgene.kim@samsung.com> CommitDate: Mon Jul 5 16:01:04 2010 +0900 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> --- arch/arm/plat-s5p/irq-eint.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/plat-s5p/irq-eint.c b/arch/arm/plat-s5p/irq-eint.c index e56c807..f36cd33 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: -- To unsubscribe from this list: send the line "unsubscribe git-commits-head" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
