summaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorChunfeng Yun <chunfeng.yun@mediatek.com>2018-10-01 18:36:08 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-10-13 09:33:14 +0200
commit7cea0a2e8c5935f81a333b86d2961e9232ece7a1 (patch)
tree41a07101edc16fed93aef5ced391174ec9c051eb /drivers/usb
parent67c8b9c6c59c3b734b0cf6479ee592539fa1ab64 (diff)
downloadlinux-stable-7cea0a2e8c5935f81a333b86d2961e9232ece7a1.tar.gz
linux-stable-7cea0a2e8c5935f81a333b86d2961e9232ece7a1.tar.bz2
linux-stable-7cea0a2e8c5935f81a333b86d2961e9232ece7a1.zip
usb: xhci-mtk: resume USB3 roothub first
commit 555df5820e733cded7eb8d0bf78b2a791be51d75 upstream. Give USB3 devices a better chance to enumerate at USB3 speeds if they are connected to a suspended host. Porting from "671ffdff5b13 xhci: resume USB 3 roothub first" Cc: <stable@vger.kernel.org> Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com> Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/host/xhci-mtk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/xhci-mtk.c b/drivers/usb/host/xhci-mtk.c
index 7334da9e9779..71d0d33c3286 100644
--- a/drivers/usb/host/xhci-mtk.c
+++ b/drivers/usb/host/xhci-mtk.c
@@ -642,10 +642,10 @@ static int __maybe_unused xhci_mtk_resume(struct device *dev)
xhci_mtk_host_enable(mtk);
xhci_dbg(xhci, "%s: restart port polling\n", __func__);
- set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
- usb_hcd_poll_rh_status(hcd);
set_bit(HCD_FLAG_POLL_RH, &xhci->shared_hcd->flags);
usb_hcd_poll_rh_status(xhci->shared_hcd);
+ set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
+ usb_hcd_poll_rh_status(hcd);
return 0;
}