Lines Matching defs:extclk
961 struct clk *extclk = data;
963 clk_disable_unprepare(extclk);
969 struct clk *extclk;
992 extclk = devm_clk_get_optional(st->dev, NULL);
993 if (IS_ERR(extclk))
994 return dev_err_probe(st->dev, PTR_ERR(extclk),
997 if (extclk) {
1003 rate_hz = clk_get_rate(extclk);
1010 ret = clk_prepare_enable(extclk);
1015 extclk);