From: Roger Quadros Date: Mon, 21 Sep 2015 14:46:13 +0000 (+0300) Subject: usb: xhci: Clear XHCI_STATE_DYING on start X-Git-Tag: v3.4.112~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa8600fa40e5ca152b8ece604579535b4296145f;p=thirdparty%2Fkernel%2Fstable.git usb: xhci: Clear XHCI_STATE_DYING on start commit e5bfeab0ad515b4f6df39fe716603e9dc6d3dfd0 upstream. For whatever reason if XHCI died in the previous instant then it will never recover on the next xhci_start unless we clear the DYING flag. Signed-off-by: Roger Quadros Signed-off-by: Mathias Nyman Signed-off-by: Greg Kroah-Hartman Signed-off-by: Zefan Li --- diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c index fd52e1efd6ca5..88be7a51df52b 100644 --- a/drivers/usb/host/xhci.c +++ b/drivers/usb/host/xhci.c @@ -141,7 +141,8 @@ static int xhci_start(struct xhci_hcd *xhci) "waited %u microseconds.\n", XHCI_MAX_HALT_USEC); if (!ret) - xhci->xhc_state &= ~XHCI_STATE_HALTED; + xhci->xhc_state &= ~(XHCI_STATE_HALTED | XHCI_STATE_DYING); + return ret; }