diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2015-01-13 10:27:30 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-01-14 20:53:51 +0100 |
commit | 8643707fb87a9801307d2c64b6a10a71a5294936 (patch) | |
tree | 90dc7a384a04869c615d603fce4a4ac431c6e60f /sound/soc/codecs/wm8997.c | |
parent | ASoC: wm8996: Replace w->codec snd_soc_dapm_to_codec(w->dapm) (diff) | |
download | linux-8643707fb87a9801307d2c64b6a10a71a5294936.tar.xz linux-8643707fb87a9801307d2c64b6a10a71a5294936.zip |
ASoC: wm8997: Replace w->codec 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>
Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/wm8997.c')
-rw-r--r-- | sound/soc/codecs/wm8997.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8997.c b/sound/soc/codecs/wm8997.c index 7e8bfe27566b..0760ede0a6e5 100644 --- a/sound/soc/codecs/wm8997.c +++ b/sound/soc/codecs/wm8997.c @@ -84,7 +84,7 @@ static const struct reg_default wm8997_sysclk_reva_patch[] = { static int wm8997_sysclk_ev(struct snd_soc_dapm_widget *w, struct snd_kcontrol *kcontrol, int event) { - struct snd_soc_codec *codec = w->codec; + struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm); struct arizona *arizona = dev_get_drvdata(codec->dev->parent); struct regmap *regmap = arizona->regmap; const struct reg_default *patch = NULL; |