aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2015-07-06 09:38:07 -0400
committerMark Brown <broonie@kernel.org>2015-07-07 09:54:27 -0400
commit8f218fa93d20a7b4ef8a088e5eed2d84b8ef4ab5 (patch)
tree5a2aec5a6bba049d066ad8508818a40bdd88d556
parente2ada8187bc8b46c30a623e7d6b5a72c209f70cd (diff)
ASoC: tas571x: 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: Kevin Cernekee <cernekee@chromium.org> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--sound/soc/codecs/tas571x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/tas571x.c b/sound/soc/codecs/tas571x.c
index 85bcc374c8e8..39307ad41a34 100644
--- a/sound/soc/codecs/tas571x.c
+++ b/sound/soc/codecs/tas571x.c
@@ -179,7 +179,7 @@ static int tas571x_set_bias_level(struct snd_soc_codec *codec,
179 case SND_SOC_BIAS_PREPARE: 179 case SND_SOC_BIAS_PREPARE:
180 break; 180 break;
181 case SND_SOC_BIAS_STANDBY: 181 case SND_SOC_BIAS_STANDBY:
182 if (codec->dapm.bias_level == SND_SOC_BIAS_OFF) { 182 if (snd_soc_codec_get_bias_level(codec) == SND_SOC_BIAS_OFF) {
183 if (!IS_ERR(priv->mclk)) { 183 if (!IS_ERR(priv->mclk)) {
184 ret = clk_prepare_enable(priv->mclk); 184 ret = clk_prepare_enable(priv->mclk);
185 if (ret) { 185 if (ret) {