Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7f62b6ee authored by Nicolin Chen's avatar Nicolin Chen Committed by Mark Brown
Browse files

ASoC: soc-pcm: Use valid condition for snd_soc_dai_digital_mute() in hw_free()



The snd_soc_dai_digital_mute() here will be never executed because we only
decrease codec->active in snd_soc_close(). Thus correct it.

Signed-off-by: default avatarNicolin Chen <b42378@freescale.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent ebff6547
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -600,12 +600,13 @@ static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
	struct snd_soc_platform *platform = rtd->platform;
	struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
	struct snd_soc_dai *codec_dai = rtd->codec_dai;
	struct snd_soc_codec *codec = rtd->codec;
	bool playback = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;

	mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);

	/* apply codec digital mute */
	if (!codec->active)
	if ((playback && codec_dai->playback_active == 1) ||
	    (!playback && codec_dai->capture_active == 1))
		snd_soc_dai_digital_mute(codec_dai, 1, substream->stream);

	/* free any machine hw params */