mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 06:30:53 +07:00
mach-ux500: fix inverted SD-card GPIO pin
The levelshifter pins were set to inverted values, fix this up. Signed-off-by: Philippe Langlais <philippe.langlais@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
fbdc6d11ae
commit
7863513efc
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user