diff options
| author | Yoshihiro Shimoda <[email protected]> | 2016-06-27 12:09:18 +0000 |
|---|---|---|
| committer | Felipe Balbi <[email protected]> | 2016-06-29 08:07:27 +0000 |
| commit | 0d7995031a8e7a34e5638d57a44a51aae39e321c (patch) | |
| tree | b7a707b401657d0af8b4692e7bf65b9a21d257c7 /drivers/usb/renesas_usbhs/common.c | |
| parent | usb: renesas_usbhs: make usbhs_write32() static (diff) | |
| download | kernel-0d7995031a8e7a34e5638d57a44a51aae39e321c.tar.gz kernel-0d7995031a8e7a34e5638d57a44a51aae39e321c.zip | |
usb: renesas_usbhs: show error code when probe failed
To know why the driver probing failed, this patch shows error code.
Signed-off-by: Yoshihiro Shimoda <[email protected]>
Signed-off-by: Felipe Balbi <[email protected]>
Diffstat (limited to 'drivers/usb/renesas_usbhs/common.c')
| -rw-r--r-- | drivers/usb/renesas_usbhs/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/renesas_usbhs/common.c b/drivers/usb/renesas_usbhs/common.c index baeb7d23bf24..8fbbc2d32371 100644 --- a/drivers/usb/renesas_usbhs/common.c +++ b/drivers/usb/renesas_usbhs/common.c @@ -697,7 +697,7 @@ probe_end_fifo_exit: probe_end_pipe_exit: usbhs_pipe_remove(priv); - dev_info(&pdev->dev, "probe failed\n"); + dev_info(&pdev->dev, "probe failed (%d)\n", ret); return ret; } |
