Lines Matching full:pclk
34 * @pclk: APB clock if present, otherwise NULL
42 struct clk *pclk;
248 drvdata->pclk = coresight_get_enable_apb_pclk(dev);
249 if (IS_ERR(drvdata->pclk))
299 if (ret && !IS_ERR_OR_NULL(drvdata->pclk))
300 clk_disable_unprepare(drvdata->pclk);
338 if (!IS_ERR_OR_NULL(drvdata->pclk))
339 clk_put(drvdata->pclk);
350 if (drvdata && !IS_ERR_OR_NULL(drvdata->pclk))
351 clk_disable_unprepare(drvdata->pclk);
362 if (drvdata && !IS_ERR_OR_NULL(drvdata->pclk))
363 clk_prepare_enable(drvdata->pclk);