Commit 7863513e authored by Philippe Langlais's avatar Philippe Langlais Committed by Linus Walleij

mach-ux500: fix inverted SD-card GPIO pin

The levelshifter pins were set to inverted values, fix this up.
Signed-off-by: default avatarPhilippe Langlais <philippe.langlais@linaro.org>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent fbdc6d11
......@@ -106,8 +106,8 @@ void mop500_sdi_tc35892_init(void)
if (ret)
return;
gpio_direction_output(GPIO_SDMMC_1V8_3V_SEL, 1);
gpio_direction_output(GPIO_SDMMC_EN, 0);
gpio_direction_output(GPIO_SDMMC_1V8_3V_SEL, 0);
gpio_direction_output(GPIO_SDMMC_EN, 1);
db8500_add_sdi0(&mop500_sdi0_data);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment