Lines Matching refs:ac97
206 struct snd_ac97 *ac97 = snd_soc_codec_get_drvdata(codec); in ac97_read() local
213 return soc_ac97_ops->read(ac97, reg); in ac97_read()
227 struct snd_ac97 *ac97 = snd_soc_codec_get_drvdata(codec); in ac97_write() local
230 soc_ac97_ops->write(ac97, reg, val); in ac97_write()
298 struct snd_ac97 *ac97 = snd_soc_codec_get_drvdata(codec); in wm9705_reset() local
301 soc_ac97_ops->reset(ac97); in wm9705_reset()
314 struct snd_ac97 *ac97 = snd_soc_codec_get_drvdata(codec); in wm9705_soc_suspend() local
316 soc_ac97_ops->write(ac97, AC97_POWERDOWN, 0xffff); in wm9705_soc_suspend()
323 struct snd_ac97 *ac97 = snd_soc_codec_get_drvdata(codec); in wm9705_soc_resume() local
332 soc_ac97_ops->write(ac97, i, cache[i>>1]); in wm9705_soc_resume()
344 struct snd_ac97 *ac97; in wm9705_soc_probe() local
347 ac97 = snd_soc_alloc_ac97_codec(codec); in wm9705_soc_probe()
348 if (IS_ERR(ac97)) { in wm9705_soc_probe()
349 ret = PTR_ERR(ac97); in wm9705_soc_probe()
358 ret = device_add(&ac97->dev); in wm9705_soc_probe()
362 snd_soc_codec_set_drvdata(codec, ac97); in wm9705_soc_probe()
367 put_device(&ac97->dev); in wm9705_soc_probe()
373 struct snd_ac97 *ac97 = snd_soc_codec_get_drvdata(codec); in wm9705_soc_remove() local
375 snd_soc_free_ac97_codec(ac97); in wm9705_soc_remove()