summaryrefslogtreecommitdiff
path: root/drivers/usb/dwc3
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@ti.com>2015-06-30 17:47:45 (GMT)
committerFelipe Balbi <balbi@ti.com>2015-07-29 14:59:17 (GMT)
commit42f69a02e7ab42f1ec75b91faf05b86e75de794a (patch)
tree5961606a9cdf52d91a74c01c9a5244f810c071b3 /drivers/usb/dwc3
parent9ff0fdca3b628d3f8719237cbc8f148379527108 (diff)
downloadlinux-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/dwc3-exynos.c b/drivers/usb/dwc3/dwc3-exynos.c
index 7bd0a95..dd5cb55 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);