Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b8165395 authored by Krishna Konda's avatar Krishna Konda
Browse files

ARM: dts: msm: fix sd card regulator info for msm krypton



The SD card's VDD regulator is controlled by gpio 89 and not gpio 51
as in the initial bring up hardware. Fix the regulator information so
that the SD card gets detected and is usuable.

Change-Id: I3df15541542be6e109d7302fe331cab282c8a463
Signed-off-by: default avatarKrishna Konda <kkonda@codeaurora.org>
parent 7dfecffd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -247,7 +247,7 @@
	sd_slot_vreg: regulator-isl80101 {
		compatible = "regulator-fixed";
		regulator-name = "sd_2.95";
		gpio = <&msmgpio 51 0>;
		gpio = <&msmgpio 89 0>;
		startup-delay-us = <1000>;
		enable-active-high;
	};
+1 −1
Original line number Diff line number Diff line
@@ -139,7 +139,7 @@ static struct gpiomux_setting gpio_sd_card_vreg_config = {

static struct msm_gpiomux_config msm_sd_card_configs[] __initdata = {
	{
		.gpio      = 51,		/* SD CARD VREG EN GPIO */
		.gpio      = 89,		/* SD CARD VREG EN GPIO */
		.settings = {
			[GPIOMUX_SUSPENDED] = &gpio_sd_card_vreg_config,
		},