Lines Matching refs:ac97_clk
33 static struct clk *ac97_clk; variable
302 clk_disable_unprepare(ac97_clk); in pxa2xx_ac97_hw_suspend()
309 clk_prepare_enable(ac97_clk); in pxa2xx_ac97_hw_resume()
364 ac97_clk = clk_get(&dev->dev, "AC97CLK"); in pxa2xx_ac97_hw_probe()
365 if (IS_ERR(ac97_clk)) { in pxa2xx_ac97_hw_probe()
366 ret = PTR_ERR(ac97_clk); in pxa2xx_ac97_hw_probe()
367 ac97_clk = NULL; in pxa2xx_ac97_hw_probe()
371 ret = clk_prepare_enable(ac97_clk); in pxa2xx_ac97_hw_probe()
384 clk_put(ac97_clk); in pxa2xx_ac97_hw_probe()
385 ac97_clk = NULL; in pxa2xx_ac97_hw_probe()
406 clk_disable_unprepare(ac97_clk); in pxa2xx_ac97_hw_remove()
407 clk_put(ac97_clk); in pxa2xx_ac97_hw_remove()
408 ac97_clk = NULL; in pxa2xx_ac97_hw_remove()