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

Commit b9651440 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "usb: dwc3-msm: Revert back to power_supply_by_name() lookup"

parents 6f2e87c3 8f681319
Loading
Loading
Loading
Loading
+11 −7
Original line number Diff line number Diff line
@@ -4322,6 +4322,9 @@ static int dwc3_msm_remove(struct platform_device *pdev)
		mdwc->dpdm_nb.notifier_call = NULL;
	}

	if (mdwc->usb_psy)
		power_supply_put(mdwc->usb_psy);

	/*
	 * In case of system suspend, pm_runtime_get_sync fails.
	 * Hence turn ON the clocks manually.
@@ -4730,17 +4733,18 @@ static int dwc3_msm_gadget_vbus_draw(struct dwc3_msm *mdwc, unsigned int mA)
	union power_supply_propval pval = {0};
	int ret;

	if (!mdwc->usb_psy && of_property_read_bool(mdwc->dev->of_node,
					"qcom,usb-charger")) {
		mdwc->usb_psy = power_supply_get_by_name("usb");
		if (!mdwc->usb_psy) {
		mdwc->usb_psy = devm_power_supply_get_by_phandle(mdwc->dev,
				"qcom,usb-charger");
		if (IS_ERR_OR_NULL(mdwc->usb_psy)) {
			dev_info(mdwc->dev, "Could not get usb psy\n");
			dev_err(mdwc->dev, "Could not get usb psy\n");
			return -ENODEV;
		}
	} else if (IS_ERR(mdwc->usb_psy)) {
		return 0;
	}

	if (!mdwc->usb_psy)
		return 0;

	if (mdwc->max_power == mA)
		return 0;