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

Commit 8dc67c0f authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "xhci: plat: Avoid xhci_resume if skip_resume flag is set"

parents 4be74d4c f57dd975
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -353,7 +353,7 @@ static int xhci_plat_resume(struct device *dev)

	dev_dbg(dev, "xhci-plat PM resume\n");

	return xhci_resume(xhci, false);
	return (!hcd_to_bus(hcd)->skip_resume) ? xhci_resume(xhci, false) : 0;
}
#endif