Lines Matching refs:atclk
56 * @atclk: optional clock for the core parts of the TPIU.
62 struct clk *atclk;
147 drvdata->atclk = devm_clk_get(dev, "atclk"); /* optional */
148 if (!IS_ERR(drvdata->atclk)) {
149 ret = clk_prepare_enable(drvdata->atclk);
215 if (drvdata && !IS_ERR(drvdata->atclk))
216 clk_disable_unprepare(drvdata->atclk);
227 if (drvdata && !IS_ERR(drvdata->atclk))
228 clk_prepare_enable(drvdata->atclk);