]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
usb: dwc3: exynos remove suspend clock unspecified debug message
authorShuah Khan <shuahkh@osg.samsung.com>
Tue, 10 Jan 2017 21:20:59 +0000 (14:20 -0700)
committerFelipe Balbi <felipe.balbi@linux.intel.com>
Tue, 24 Jan 2017 09:04:09 +0000 (11:04 +0200)
dwc3-exynos prints debug message when suspend clock is not specified.
The suspend clock is optional and driver can work without it.

This debug message doesn't add any value and leads to confusion and
concern. Remove it.

Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
drivers/usb/dwc3/dwc3-exynos.c

index e27899bb57064b94811fae851587b06b743128ff..3e8407a99b754386ed92ea140167d3df6a48a7f5 100644 (file)
@@ -128,10 +128,8 @@ static int dwc3_exynos_probe(struct platform_device *pdev)
        clk_prepare_enable(exynos->clk);
 
        exynos->susp_clk = devm_clk_get(dev, "usbdrd30_susp_clk");
-       if (IS_ERR(exynos->susp_clk)) {
-               dev_info(dev, "no suspend clk specified\n");
+       if (IS_ERR(exynos->susp_clk))
                exynos->susp_clk = NULL;
-       }
        clk_prepare_enable(exynos->susp_clk);
 
        if (of_device_is_compatible(node, "samsung,exynos7-dwusb3")) {