diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2015-06-01 04:10:56 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-06-01 11:45:14 -0400 |
commit | 491c04eb86c768f61678fe7169ff13ce57dadef9 (patch) | |
tree | b618a123514e2dd1c4c202e913165f06cb1d6e85 | |
parent | 4b67780291bef6b7efc4046630f0ab4b8cf06584 (diff) |
ASoC: wm8988: Replace direct snd_soc_codec dapm field access
The dapm field of the snd_soc_codec struct is eventually going to be
removed, in preparation for this replace all manual access to
codec->dapm.bias_level with snd_soc_codec_get_bias_level().
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>
-rw-r--r-- | sound/soc/codecs/wm8988.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8988.c b/sound/soc/codecs/wm8988.c index 92680c6d247e..f13a995af277 100644 --- a/sound/soc/codecs/wm8988.c +++ b/sound/soc/codecs/wm8988.c | |||
@@ -738,7 +738,7 @@ static int wm8988_set_bias_level(struct snd_soc_codec *codec, | |||
738 | break; | 738 | break; |
739 | 739 | ||
740 | case SND_SOC_BIAS_STANDBY: | 740 | case SND_SOC_BIAS_STANDBY: |
741 | if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) { | 741 | if (snd_soc_codec_get_bias_level(codec) == SND_SOC_BIAS_OFF) { |
742 | regcache_sync(wm8988->regmap); | 742 | regcache_sync(wm8988->regmap); |
743 | 743 | ||
744 | /* VREF, VMID=2x5k */ | 744 | /* VREF, VMID=2x5k */ |