Lines Matching refs:ac97_clk
30 static struct clk *ac97_clk; variable
305 clk_disable_unprepare(ac97_clk); in pxa2xx_ac97_hw_suspend()
312 clk_prepare_enable(ac97_clk); in pxa2xx_ac97_hw_resume()
378 ac97_clk = clk_get(&dev->dev, "AC97CLK"); in pxa2xx_ac97_hw_probe()
379 if (IS_ERR(ac97_clk)) { in pxa2xx_ac97_hw_probe()
380 ret = PTR_ERR(ac97_clk); in pxa2xx_ac97_hw_probe()
381 ac97_clk = NULL; in pxa2xx_ac97_hw_probe()
385 ret = clk_prepare_enable(ac97_clk); in pxa2xx_ac97_hw_probe()
398 clk_put(ac97_clk); in pxa2xx_ac97_hw_probe()
399 ac97_clk = NULL; in pxa2xx_ac97_hw_probe()
420 clk_disable_unprepare(ac97_clk); in pxa2xx_ac97_hw_remove()
421 clk_put(ac97_clk); in pxa2xx_ac97_hw_remove()
422 ac97_clk = NULL; in pxa2xx_ac97_hw_remove()