mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
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 <rogerq@ti.com> Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Zefan Li <lizefan@huawei.com>
This commit is contained in:
parent
63a2bddd9e
commit
fa8600fa40
1 changed files with 2 additions and 1 deletions
|
@ -141,7 +141,8 @@ static int xhci_start(struct xhci_hcd *xhci)
|
||||||
"waited %u microseconds.\n",
|
"waited %u microseconds.\n",
|
||||||
XHCI_MAX_HALT_USEC);
|
XHCI_MAX_HALT_USEC);
|
||||||
if (!ret)
|
if (!ret)
|
||||||
xhci->xhc_state &= ~XHCI_STATE_HALTED;
|
xhci->xhc_state &= ~(XHCI_STATE_HALTED | XHCI_STATE_DYING);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue