Lines Matching refs:atclk
38 * @atclk: optional clock for the core parts of the funnel.
46 struct clk *atclk;
234 drvdata->atclk = devm_clk_get(dev, "atclk"); /* optional */
235 if (!IS_ERR(drvdata->atclk)) {
236 ret = clk_prepare_enable(drvdata->atclk);
285 if (ret && !IS_ERR_OR_NULL(drvdata->atclk))
286 clk_disable_unprepare(drvdata->atclk);
306 if (drvdata && !IS_ERR(drvdata->atclk))
307 clk_disable_unprepare(drvdata->atclk);
319 if (drvdata && !IS_ERR(drvdata->atclk))
320 clk_prepare_enable(drvdata->atclk);