Lines Matching defs:fclk
127 struct clk *fclk;
437 if (unlikely(!timer) || IS_ERR(timer->fclk))
466 if (clk_hw_get_num_parents(__clk_get_hw(timer->fclk)) < 2)
476 ret = clk_set_parent(timer->fclk, parent);
748 if (timer && !IS_ERR(timer->fclk))
749 return timer->fclk;
1456 timer->fclk = devm_clk_get(dev, "fck");
1457 if (IS_ERR(timer->fclk))
1458 return PTR_ERR(timer->fclk);
1461 ret = devm_clk_notifier_register(dev, timer->fclk,
1466 timer->fclk_rate = clk_get_rate(timer->fclk);
1468 timer->fclk = ERR_PTR(-ENODEV);
1480 if (timer->capability & OMAP_TIMER_ALWON && !IS_ERR_OR_NULL(timer->fclk)) {