diff options
author | Felipe Balbi <balbi@ti.com> | 2015-06-30 20:47:45 +0300 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2015-07-29 17:59:17 +0300 |
commit | 42f69a02e7ab42f1ec75b91faf05b86e75de794a (patch) | |
tree | 5961606a9cdf52d91a74c01c9a5244f810c071b3 /drivers/usb/dwc3 | |
parent | 9ff0fdca3b628d3f8719237cbc8f148379527108 (diff) | |
download | linux-42f69a02e7ab42f1ec75b91faf05b86e75de794a.tar.xz |
usb: dwc3: exynos: switch dev_dbg() to dev_info()
that message is informing that the clock is missing.
However, that's a valid condition for some setups; driver
even ignores the error and continues just fine.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/dwc3')
-rw-r--r-- | drivers/usb/dwc3/dwc3-exynos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/dwc3-exynos.c b/drivers/usb/dwc3/dwc3-exynos.c index 7bd0a95b2815..dd5cb5577dca 100644 --- a/drivers/usb/dwc3/dwc3-exynos.c +++ b/drivers/usb/dwc3/dwc3-exynos.c @@ -145,7 +145,7 @@ static int dwc3_exynos_probe(struct platform_device *pdev) exynos->susp_clk = devm_clk_get(dev, "usbdrd30_susp_clk"); if (IS_ERR(exynos->susp_clk)) { - dev_dbg(dev, "no suspend clk specified\n"); + dev_info(dev, "no suspend clk specified\n"); exynos->susp_clk = NULL; } clk_prepare_enable(exynos->susp_clk); |