Lines Matching defs:ashb_clk
212 struct clk *ashb_clk;
270 * The ashb_clk is optional and only for AGCP DMA controller, so we
271 * need add one condition to check if the ashb_clk need enable.
273 if (!IS_ERR(sdev->ashb_clk))
274 ret = clk_prepare_enable(sdev->ashb_clk);
284 * Need to check if we need disable the optional ashb_clk for AGCP DMA.
286 if (!IS_ERR(sdev->ashb_clk))
287 clk_disable_unprepare(sdev->ashb_clk);
1142 sdev->ashb_clk = devm_clk_get(&pdev->dev, "ashb_eb");
1143 if (IS_ERR(sdev->ashb_clk))