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

Commit 97ed7577 authored by Jack Pham's avatar Jack Pham
Browse files

usb: dwc3-msm: Use PROP_INPUT_CURRENT_LIMIT to for vbus_draw



The charger driver expects USB to indicate the amount of VBUS
current to draw while in peripheral mode using the power_supply
property POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT instead of
POWER_SUPPLY_PROP_CURRENT_MAX, as the latter is intended as a
read-only property which indicates the actual maximum current
that the charger HW is allowed to draw.

Change-Id: Icaab0032d9f545610f91c23bf5624095b1123317
Signed-off-by: default avatarJack Pham <jackp@codeaurora.org>
parent b38b5109
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4703,7 +4703,7 @@ static int dwc3_msm_gadget_vbus_draw(struct dwc3_msm *mdwc, unsigned int mA)
	/* Set max current limit in uA */
	pval.intval = 1000 * mA;
	ret = power_supply_set_property(mdwc->usb_psy,
				POWER_SUPPLY_PROP_CURRENT_MAX, &pval);
				POWER_SUPPLY_PROP_INPUT_CURRENT_LIMIT, &pval);
	if (ret) {
		dev_dbg(mdwc->dev, "power supply error when setting property\n");
		return ret;