diff options
author | Mathias Nyman <mathias.nyman@linux.intel.com> | 2015-01-09 17:06:32 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-01-09 21:05:47 +0300 |
commit | 86cd740a621d4571252f04b2d618fd054e4ddfc4 (patch) | |
tree | 6dfe2a7025ed52c7f8e31cc838f6dc9ffcc06499 /drivers/usb/host/xhci-ring.c | |
parent | 4daf9df51fbfb03b8c2bcb538cb467f7c7af1f11 (diff) | |
download | linux-86cd740a621d4571252f04b2d618fd054e4ddfc4.tar.xz |
xhci: Add completion code to the debug ouput of unhandled transfer events
Helps debugging to know the unhandled event type.
Also make the debug message grepable
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/xhci-ring.c')
-rw-r--r-- | drivers/usb/host/xhci-ring.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c index 067f18a46690..88da8d629820 100644 --- a/drivers/usb/host/xhci-ring.c +++ b/drivers/usb/host/xhci-ring.c @@ -2354,8 +2354,8 @@ static int handle_tx_event(struct xhci_hcd *xhci, status = 0; break; } - xhci_warn(xhci, "ERROR Unknown event condition, HC probably " - "busted\n"); + xhci_warn(xhci, "ERROR Unknown event condition %u, HC probably busted\n", + trb_comp_code); goto cleanup; } |