From: Lars-Peter Clausen Date: Thu, 14 May 2015 09:19:55 +0000 (+0200) Subject: ASoC: sta529: Replace direct snd_soc_codec dapm field access X-Git-Tag: v4.2-rc1~55^2~48^2~1^2~67 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=95fcb384e6738bcc37b4f7bf6d1272aba4e7d2b9;p=uclinux-h8%2Flinux.git ASoC: sta529: 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 Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/sta529.c b/sound/soc/codecs/sta529.c index c3217af1ca29..4f70378b2cfb 100644 --- a/sound/soc/codecs/sta529.c +++ b/sound/soc/codecs/sta529.c @@ -165,7 +165,7 @@ static int sta529_set_bias_level(struct snd_soc_codec *codec, enum FFX_CLK_ENB); break; case SND_SOC_BIAS_STANDBY: - if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) + if (snd_soc_codec_get_bias_level(codec) == SND_SOC_BIAS_OFF) regcache_sync(sta529->regmap); snd_soc_update_bits(codec, STA529_FFXCFG0, POWER_CNTLMSAK, POWER_STDBY);