Commit 88fdffa2 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: soc-core: use existing snd_soc_dai_digital_mute()

ALSA SoC already has snd_soc_dai_digital_mute() for digital_mute,
let's use it.
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/87ef2ihmzo.wl-kuninori.morimoto.gx@renesas.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent b423c420
...@@ -487,10 +487,9 @@ int snd_soc_suspend(struct device *dev) ...@@ -487,10 +487,9 @@ int snd_soc_suspend(struct device *dev)
continue; continue;
for_each_rtd_codec_dai(rtd, i, dai) { for_each_rtd_codec_dai(rtd, i, dai) {
struct snd_soc_dai_driver *drv = dai->driver; if (dai->playback_active)
snd_soc_dai_digital_mute(dai, 1,
if (drv->ops->digital_mute && dai->playback_active) SNDRV_PCM_STREAM_PLAYBACK);
drv->ops->digital_mute(dai, 1);
} }
} }
...@@ -665,10 +664,9 @@ static void soc_resume_deferred(struct work_struct *work) ...@@ -665,10 +664,9 @@ static void soc_resume_deferred(struct work_struct *work)
continue; continue;
for_each_rtd_codec_dai(rtd, i, dai) { for_each_rtd_codec_dai(rtd, i, dai) {
struct snd_soc_dai_driver *drv = dai->driver; if (dai->playback_active)
snd_soc_dai_digital_mute(dai, 0,
if (drv->ops->digital_mute && dai->playback_active) SNDRV_PCM_STREAM_PLAYBACK);
drv->ops->digital_mute(dai, 0);
} }
} }
......
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