From: Lars-Peter Clausen Date: Mon, 11 May 2015 07:42:28 +0000 (+0200) Subject: ASoC: ak4641: Replace direct snd_soc_codec dapm field access X-Git-Tag: v4.2-rc3~17^2~53^2~1^2~88 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6d701b6dedde988c517a625002dbb865080960e5;p=platform%2Fkernel%2Flinux-exynos.git ASoC: ak4641: 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/ak4641.c b/sound/soc/codecs/ak4641.c index 3b22b58..2d0ff45 100644 --- a/sound/soc/codecs/ak4641.c +++ b/sound/soc/codecs/ak4641.c @@ -412,7 +412,7 @@ static int ak4641_set_bias_level(struct snd_soc_codec *codec, snd_soc_update_bits(codec, AK4641_DAC, 0x20, 0x20); 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) { if (pdata && gpio_is_valid(pdata->gpio_power)) gpio_set_value(pdata->gpio_power, 1); mdelay(1);