forked from Minki/linux
ASoC: dapm: Power off all widgets in the snd_soc_dapm_shutdown
The widgets generated by the machine driver need to power off too. Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
26e24ddce7
commit
57996358f4
@ -4116,7 +4116,7 @@ void snd_soc_dapm_free(struct snd_soc_dapm_context *dapm)
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(snd_soc_dapm_free);
|
||||
|
||||
static void soc_dapm_shutdown_codec(struct snd_soc_dapm_context *dapm)
|
||||
static void soc_dapm_shutdown_dapm(struct snd_soc_dapm_context *dapm)
|
||||
{
|
||||
struct snd_soc_card *card = dapm->card;
|
||||
struct snd_soc_dapm_widget *w;
|
||||
@ -4156,12 +4156,12 @@ static void soc_dapm_shutdown_codec(struct snd_soc_dapm_context *dapm)
|
||||
*/
|
||||
void snd_soc_dapm_shutdown(struct snd_soc_card *card)
|
||||
{
|
||||
struct snd_soc_codec *codec;
|
||||
struct snd_soc_dapm_context *dapm;
|
||||
|
||||
list_for_each_entry(codec, &card->codec_dev_list, card_list) {
|
||||
soc_dapm_shutdown_codec(&codec->dapm);
|
||||
if (codec->dapm.bias_level == SND_SOC_BIAS_STANDBY)
|
||||
snd_soc_dapm_set_bias_level(&codec->dapm,
|
||||
list_for_each_entry(dapm, &card->dapm_list, list) {
|
||||
soc_dapm_shutdown_dapm(dapm);
|
||||
if (dapm->bias_level == SND_SOC_BIAS_STANDBY)
|
||||
snd_soc_dapm_set_bias_level(dapm,
|
||||
SND_SOC_BIAS_OFF);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user