Lines Matching refs:ac97_clk
33 static struct clk *ac97_clk; variable
308 clk_disable_unprepare(ac97_clk); in pxa2xx_ac97_hw_suspend()
315 clk_prepare_enable(ac97_clk); in pxa2xx_ac97_hw_resume()
381 ac97_clk = clk_get(&dev->dev, "AC97CLK"); in pxa2xx_ac97_hw_probe()
382 if (IS_ERR(ac97_clk)) { in pxa2xx_ac97_hw_probe()
383 ret = PTR_ERR(ac97_clk); in pxa2xx_ac97_hw_probe()
384 ac97_clk = NULL; in pxa2xx_ac97_hw_probe()
388 ret = clk_prepare_enable(ac97_clk); in pxa2xx_ac97_hw_probe()
401 clk_put(ac97_clk); in pxa2xx_ac97_hw_probe()
402 ac97_clk = NULL; in pxa2xx_ac97_hw_probe()
423 clk_disable_unprepare(ac97_clk); in pxa2xx_ac97_hw_remove()
424 clk_put(ac97_clk); in pxa2xx_ac97_hw_remove()
425 ac97_clk = NULL; in pxa2xx_ac97_hw_remove()