From dc0c32fa4c1e6575eeea7a460291d208dae8f4cb Mon Sep 17 00:00:00 2001 From: Jan Luebbe Date: Thu, 25 Dec 2014 18:09:01 +0100 Subject: arm: mxs: fix pin voltage register value for EMI The EMI pins are documented in the reference manual as using value 0 for both 1.8V and 2.5V. Value 1 is reserved. Signed-off-by: Jan Luebbe Signed-off-by: Sascha Hauer --- arch/arm/mach-mxs/include/mach/iomux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-mxs/include/mach/iomux.h b/arch/arm/mach-mxs/include/mach/iomux.h index 4361be5782..0091dbae11 100644 --- a/arch/arm/mach-mxs/include/mach/iomux.h +++ b/arch/arm/mach-mxs/include/mach/iomux.h @@ -97,7 +97,7 @@ * .. PORTF(1, 15). So the PORTF macro is more ugly than necessary. */ # define PORTF(bank,bit) (BANK((bank) / 2) | BANKPIN((((bank) & 1) << 4) | (bit)) | ERROR((bit) & ~15) | ERROR((bank) & ~7)) -# define VE_2_5V VOLTAGE(1) +# define VE_2_5V VOLTAGE(0) # include #endif -- cgit v1.2.3