Lines 850-855
void xhci_stop_endpoint_command_watchdog(unsigned long arg)
Link Here
|
850 |
spin_lock_irqsave(&xhci->lock, flags); |
850 |
spin_lock_irqsave(&xhci->lock, flags); |
851 |
|
851 |
|
852 |
ep->stop_cmds_pending--; |
852 |
ep->stop_cmds_pending--; |
|
|
853 |
if (xhci->xhc_state & XHCI_STATE_REMOVING) { |
854 |
spin_unlock_irqrestore(&xhci->lock, flags); |
855 |
return; |
856 |
} |
853 |
if (xhci->xhc_state & XHCI_STATE_DYING) { |
857 |
if (xhci->xhc_state & XHCI_STATE_DYING) { |
854 |
xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb, |
858 |
xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb, |
855 |
"Stop EP timer ran, but another timer marked " |
859 |
"Stop EP timer ran, but another timer marked " |
Lines 903-909
void xhci_stop_endpoint_command_watchdog(unsigned long arg)
Link Here
|
903 |
spin_unlock_irqrestore(&xhci->lock, flags); |
907 |
spin_unlock_irqrestore(&xhci->lock, flags); |
904 |
xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb, |
908 |
xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb, |
905 |
"Calling usb_hc_died()"); |
909 |
"Calling usb_hc_died()"); |
906 |
usb_hc_died(xhci_to_hcd(xhci)->primary_hcd); |
910 |
usb_hc_died(xhci_to_hcd(xhci)); |
907 |
xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb, |
911 |
xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb, |
908 |
"xHCI host controller is dead."); |
912 |
"xHCI host controller is dead."); |
909 |
} |
913 |
} |
910 |
- |
|
|