cpuidle: Replace ktime_get() with local_clock()
[deliverable/linux.git] / drivers / pwm / pwm-img.c
index 8a029f9bc18cb0f0c2c95bc7ea4d9167164326be..2fb30deee3457017a22c1cea394cfd2e6e1cab77 100644 (file)
@@ -237,6 +237,11 @@ static int img_pwm_probe(struct platform_device *pdev)
        }
 
        clk_rate = clk_get_rate(pwm->pwm_clk);
+       if (!clk_rate) {
+               dev_err(&pdev->dev, "pwm clock has no frequency\n");
+               ret = -EINVAL;
+               goto disable_pwmclk;
+       }
 
        /* The maximum input clock divider is 512 */
        val = (u64)NSEC_PER_SEC * 512 * pwm->data->max_timebase;
This page took 0.042696 seconds and 5 git commands to generate.