Lines Matching defs:extclk
40 struct clk *extclk;
102 if (priv->extclk)
103 clk_prepare_enable(priv->extclk);
127 if (priv->extclk)
128 clk_disable_unprepare(priv->extclk);
211 if (priv->extclk) {
215 * For DT based boards, if an extclk is given, use it
219 ret = clk_set_rate(priv->extclk, freq);
796 priv->extclk = devm_clk_get(dev, "extclk");
797 if (IS_ERR(priv->extclk)) {
798 ret = PTR_ERR(priv->extclk);
802 priv->extclk = NULL;