usb: dwc3: qcom: switch dev_dbg() to dev_info()
authorFelipe Balbi <balbi@ti.com>
Tue, 30 Jun 2015 17:48:58 +0000 (12:48 -0500)
committerFelipe Balbi <balbi@ti.com>
Wed, 29 Jul 2015 14:59:17 +0000 (09:59 -0500)
those two messages are informing that the clock
doesn't exist; that, however, is a valid situation
and driver continues just fine by ignoring the error.

Reviewed-by: Andy Gross <agross@codeaurora.org>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/dwc3/dwc3-qcom.c

index 8c2e8ee..0880260 100644 (file)
@@ -48,13 +48,13 @@ static int dwc3_qcom_probe(struct platform_device *pdev)
 
        qdwc->iface_clk = devm_clk_get(qdwc->dev, "iface");
        if (IS_ERR(qdwc->iface_clk)) {
-               dev_dbg(qdwc->dev, "failed to get optional iface clock\n");
+               dev_info(qdwc->dev, "failed to get optional iface clock\n");
                qdwc->iface_clk = NULL;
        }
 
        qdwc->sleep_clk = devm_clk_get(qdwc->dev, "sleep");
        if (IS_ERR(qdwc->sleep_clk)) {
-               dev_dbg(qdwc->dev, "failed to get optional sleep clock\n");
+               dev_info(qdwc->dev, "failed to get optional sleep clock\n");
                qdwc->sleep_clk = NULL;
        }