usb: dwc3: exynos: switch dev_dbg() to dev_info()
authorFelipe Balbi <balbi@ti.com>
Tue, 30 Jun 2015 17:47:45 +0000 (12:47 -0500)
committerFelipe Balbi <balbi@ti.com>
Wed, 29 Jul 2015 14:59:17 +0000 (09:59 -0500)
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>
drivers/usb/dwc3/dwc3-exynos.c

index 7bd0a95b2815425d8e088dc39b83e7106177131f..dd5cb5577dcaf62d411fb9776e47a23d4a4dacf7 100644 (file)
@@ -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);
This page took 0.027803 seconds and 5 git commands to generate.