Lines Matching refs:ac97_clk
31 static struct clk *ac97_clk; variable
313 clk_disable_unprepare(ac97_clk); in pxa2xx_ac97_hw_suspend()
320 clk_prepare_enable(ac97_clk); in pxa2xx_ac97_hw_resume()
393 ac97_clk = clk_get(&dev->dev, "AC97CLK"); in pxa2xx_ac97_hw_probe()
394 if (IS_ERR(ac97_clk)) { in pxa2xx_ac97_hw_probe()
395 ret = PTR_ERR(ac97_clk); in pxa2xx_ac97_hw_probe()
396 ac97_clk = NULL; in pxa2xx_ac97_hw_probe()
400 ret = clk_prepare_enable(ac97_clk); in pxa2xx_ac97_hw_probe()
419 clk_put(ac97_clk); in pxa2xx_ac97_hw_probe()
420 ac97_clk = NULL; in pxa2xx_ac97_hw_probe()
441 clk_disable_unprepare(ac97_clk); in pxa2xx_ac97_hw_remove()
442 clk_put(ac97_clk); in pxa2xx_ac97_hw_remove()
443 ac97_clk = NULL; in pxa2xx_ac97_hw_remove()