Commit fd218aa3 authored by Jyri Sarha's avatar Jyri Sarha Committed by Mark Brown

ASoC: tlv320aic31xx: Turn power off only once.

Regulator code keep count of enables and disables. Double disable
causes an ugly warning.
Signed-off-by: default avatarJyri Sarha <jsarha@ti.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 9296f4da
...@@ -1020,6 +1020,7 @@ static int aic31xx_set_bias_level(struct snd_soc_codec *codec, ...@@ -1020,6 +1020,7 @@ static int aic31xx_set_bias_level(struct snd_soc_codec *codec,
} }
break; break;
case SND_SOC_BIAS_OFF: case SND_SOC_BIAS_OFF:
if (codec->dapm.bias_level == SND_SOC_BIAS_STANDBY)
aic31xx_power_off(codec); aic31xx_power_off(codec);
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment