diff options
author | Brian Norris <briannorris@chromium.org> | 2018-11-07 23:40:29 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-12-13 10:51:46 +0300 |
commit | 497411c5a43f5778fbd17b12f1c290f3e6bf009c (patch) | |
tree | 4fc6aa8c32fd6456d73c992e674a48ef88b66642 /drivers/usb/dwc3 | |
parent | 184bc0d73bdc82ba5a45c6ca94365b9ae7a584f4 (diff) | |
download | linux-497411c5a43f5778fbd17b12f1c290f3e6bf009c.tar.xz |
usb: dwc3: don't log probe deferrals; but do log other error codes
[ Upstream commit 408d3ba006af57380fa48858b39f72fde6405031 ]
It's not very useful to repeat a bunch of probe deferral errors. And
it's also not very useful to log "failed" without telling the error
code.
Signed-off-by: Brian Norris <briannorris@chromium.org>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/usb/dwc3')
-rw-r--r-- | drivers/usb/dwc3/core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c index aca7e7fa5e47..f52fcbc5c971 100644 --- a/drivers/usb/dwc3/core.c +++ b/drivers/usb/dwc3/core.c @@ -1481,7 +1481,8 @@ static int dwc3_probe(struct platform_device *pdev) ret = dwc3_core_init(dwc); if (ret) { - dev_err(dev, "failed to initialize core\n"); + if (ret != -EPROBE_DEFER) + dev_err(dev, "failed to initialize core: %d\n", ret); goto err4; } |