diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2014-11-17 09:37:36 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-11-17 11:27:55 +0100 |
commit | d69db7f7cd57fdfc6ac64c4c8679eb7b80c84fc7 (patch) | |
tree | f69fbc7adc8dd0d8cb5098e5939c8422c4e41a64 /sound/soc/codecs/adau17x1.c | |
parent | Linux 3.18-rc1 (diff) | |
download | linux-d69db7f7cd57fdfc6ac64c4c8679eb7b80c84fc7.tar.xz linux-d69db7f7cd57fdfc6ac64c4c8679eb7b80c84fc7.zip |
ASoC: adau17x1: Replace w->codec with snd_soc_dapm_to_codec(w->dapm)
The codec field of the snd_soc_widget struct is eventually going to be
removed, use snd_soc_dapm_to_codec(w->dapm) instead.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/adau17x1.c')
-rw-r--r-- | sound/soc/codecs/adau17x1.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/codecs/adau17x1.c b/sound/soc/codecs/adau17x1.c index 3e16c1c64115..427ad77bfe56 100644 --- a/sound/soc/codecs/adau17x1.c +++ b/sound/soc/codecs/adau17x1.c @@ -61,7 +61,8 @@ static const struct snd_kcontrol_new adau17x1_controls[] = { static int adau17x1_pll_event(struct snd_soc_dapm_widget *w, struct snd_kcontrol *kcontrol, int event) { - struct adau *adau = snd_soc_codec_get_drvdata(w->codec); + struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm); + struct adau *adau = snd_soc_codec_get_drvdata(codec); int ret; if (SND_SOC_DAPM_EVENT_ON(event)) { |