summaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/wm8903.c
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2015-06-19 12:17:19 +0200
committerMark Brown <broonie@kernel.org>2015-06-19 12:17:19 +0200
commit89a6192049050035cbd779d35686cbf29ca9184f (patch)
treef63c3344dc7ce4da5589d043d6135c7ff81508fd /sound/soc/codecs/wm8903.c
parentASoC: wm_adsp: Add basic debugfs entries (diff)
parentASoC: dapm: fix build errors for missing snd_soc_dapm_new_control symbol (diff)
downloadlinux-89a6192049050035cbd779d35686cbf29ca9184f.tar.xz
linux-89a6192049050035cbd779d35686cbf29ca9184f.zip
Merge branches 'topic/adsp' and 'topic/dapm' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into asoc-arizona
Diffstat (limited to 'sound/soc/codecs/wm8903.c')
-rw-r--r--sound/soc/codecs/wm8903.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sound/soc/codecs/wm8903.c b/sound/soc/codecs/wm8903.c
index 04b04f8e147c..b5322c1544fb 100644
--- a/sound/soc/codecs/wm8903.c
+++ b/sound/soc/codecs/wm8903.c
@@ -1105,7 +1105,7 @@ static int wm8903_set_bias_level(struct snd_soc_codec *codec,
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) {
snd_soc_update_bits(codec, WM8903_BIAS_CONTROL_0,
WM8903_POBCTRL | WM8903_ISEL_MASK |
WM8903_STARTUP_BIAS_ENA |
@@ -1200,8 +1200,6 @@ static int wm8903_set_bias_level(struct snd_soc_codec *codec,
break;
}
- codec->dapm.bias_level = level;
-
return 0;
}