diff options
author | Joe Lawrence <joe.lawrence@stratus.com> | 2015-04-30 17:16:04 +0300 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2015-06-03 11:33:10 +0200 |
commit | 245ac1a15a1b1ba5ec60ca8479b6bd5451e55c0d (patch) | |
tree | b7a312d74460e89ebe99f67b29910806575c4cd1 /drivers/usb | |
parent | ef4a35936faac72268fe6ae7e97120ad85b7b72d (diff) |
xhci: gracefully handle xhci_irq dead device
commit 948fa13504f80b9765d2b753691ab94c83a10341 upstream.
If the xHCI host controller has died (ie, device removed) or suffered
other serious fatal error (STS_FATAL), then xhci_irq should handle this
condition with IRQ_HANDLED instead of -ESHUTDOWN.
Signed-off-by: Joe Lawrence <joe.lawrence@stratus.com>
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/host/xhci-ring.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c index 05f04e7343eb..07aafa50f453 100644 --- a/drivers/usb/host/xhci-ring.c +++ b/drivers/usb/host/xhci-ring.c @@ -2794,7 +2794,7 @@ irqreturn_t xhci_irq(struct usb_hcd *hcd) xhci_halt(xhci); hw_died: spin_unlock(&xhci->lock); - return -ESHUTDOWN; + return IRQ_HANDLED; } /* |