From 3f215011142a7c3ed6e38f2712b8e875b8dcfd0f Mon Sep 17 00:00:00 2001 From: Philip Paeps Date: Wed, 17 Apr 2013 04:39:27 +0000 Subject: [PATCH] mx35 iomux: correct input select register index Prior to this fix, calls to mxc_iomux_set_input() for registers after MUX_IN_GPIO2_IN_19 would write to the wrong registers, possibly resulting in unexpected behaviour. Signed-off-by: Philip Paeps --- arch/arm/include/asm/arch-mx35/iomux.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/include/asm/arch-mx35/iomux.h b/arch/arm/include/asm/arch-mx35/iomux.h index 52c15bc..7f17ed6 100644 --- a/arch/arm/include/asm/arch-mx35/iomux.h +++ b/arch/arm/include/asm/arch-mx35/iomux.h @@ -141,6 +141,7 @@ typedef enum iomux_input_select { MUX_IN_GPIO2_IN_17, MUX_IN_GPIO2_IN_18, MUX_IN_GPIO2_IN_19, + MUX_IN_GPIO2_IN_1, MUX_IN_GPIO2_IN_20, MUX_IN_GPIO2_IN_21, MUX_IN_GPIO2_IN_22, -- 2.7.4