|
@@ -360,7 +360,6 @@ static int __maybe_unused xhci_plat_suspend(struct device *dev)
|
|
|
{
|
|
|
struct usb_hcd *hcd = dev_get_drvdata(dev);
|
|
|
struct xhci_hcd *xhci = hcd_to_xhci(hcd);
|
|
|
- int ret;
|
|
|
|
|
|
/*
|
|
|
* xhci_suspend() needs `do_wakeup` to know whether host is allowed
|
|
@@ -370,12 +369,7 @@ static int __maybe_unused xhci_plat_suspend(struct device *dev)
|
|
|
* reconsider this when xhci_plat_suspend enlarges its scope, e.g.,
|
|
|
* also applies to runtime suspend.
|
|
|
*/
|
|
|
- ret = xhci_suspend(xhci, device_may_wakeup(dev));
|
|
|
-
|
|
|
- if (!device_may_wakeup(dev) && !IS_ERR(xhci->clk))
|
|
|
- clk_disable_unprepare(xhci->clk);
|
|
|
-
|
|
|
- return ret;
|
|
|
+ return xhci_suspend(xhci, device_may_wakeup(dev));
|
|
|
}
|
|
|
|
|
|
static int __maybe_unused xhci_plat_resume(struct device *dev)
|
|
@@ -384,9 +378,6 @@ static int __maybe_unused xhci_plat_resume(struct device *dev)
|
|
|
struct xhci_hcd *xhci = hcd_to_xhci(hcd);
|
|
|
int ret;
|
|
|
|
|
|
- if (!device_may_wakeup(dev) && !IS_ERR(xhci->clk))
|
|
|
- clk_prepare_enable(xhci->clk);
|
|
|
-
|
|
|
ret = xhci_priv_resume_quirk(hcd);
|
|
|
if (ret)
|
|
|
return ret;
|