diff options
author | Felipe Balbi <balbi@ti.com> | 2015-06-30 12:46:53 -0500 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2015-07-29 09:59:17 -0500 |
commit | 9ff0fdca3b628d3f8719237cbc8f148379527108 (patch) | |
tree | a198d1d31aa4df717df0c3cd125419864d801216 /drivers/usb/dwc3 | |
parent | e4f7566754675b2fd89ed32eee867d5f19bac934 (diff) | |
download | linux-9ff0fdca3b628d3f8719237cbc8f148379527108.tar.bz2 |
usb: dwc3: keystone: convert dev_dbg() to dev_err()
that's an error condition, not a debugging message.
Let's promote it appropriately.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/dwc3')
-rw-r--r-- | drivers/usb/dwc3/dwc3-keystone.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/dwc3-keystone.c b/drivers/usb/dwc3/dwc3-keystone.c index fe3b9335a74e..2be268d2423d 100644 --- a/drivers/usb/dwc3/dwc3-keystone.c +++ b/drivers/usb/dwc3/dwc3-keystone.c @@ -115,7 +115,7 @@ static int kdwc3_probe(struct platform_device *pdev) error = clk_prepare_enable(kdwc->clk); if (error < 0) { - dev_dbg(kdwc->dev, "unable to enable usb clock, err %d\n", + dev_err(kdwc->dev, "unable to enable usb clock, error %d\n", error); return error; } |