Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 42f69a02 authored by Felipe Balbi's avatar Felipe Balbi
Browse files

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: default avatarFelipe Balbi <balbi@ti.com>
parent 9ff0fdca
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);