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

Commit 7692d430 authored by Hemant Kumar's avatar Hemant Kumar
Browse files

usb: xhci-msm-hsic: Fix vddmin voting for vddcx regulator



Driver is incorrectly setting RPM_REGULATOR_CORNER_NORMAL as
minimum required voltage for vddcx regulator to vote for vddmin.
Fix this by setting RPM_REGULATOR_CORNER_NONE as minimum required
voltage when voting for vddmin.

Change-Id: I1af39e8c283f9a57f300439e388177c9dcf0c56a
Signed-off-by: default avatarHemant Kumar <hemantk@codeaurora.org>
parent d6e87cbf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -540,7 +540,7 @@ static int mxhci_hsic_suspend(struct mxhci_hsic_hcd *mxhci)
	clk_disable_unprepare(mxhci->hsic_clk);
	clk_disable_unprepare(mxhci->cal_clk);

	ret = regulator_set_voltage(mxhci->hsic_vddcx, mxhci->vdd_low_vol_level,
	ret = regulator_set_voltage(mxhci->hsic_vddcx, mxhci->vdd_no_vol_level,
			mxhci->vdd_high_vol_level);
	if (ret < 0)
		dev_err(mxhci->dev, "unable to set vddcx voltage for VDD MIN\n");