1
0
Fork 0

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: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://lore.kernel.org/r/87ef2ihmzo.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
alistair/sunxi64-5.4-dsi
Kuninori Morimoto 2019-07-22 10:36:27 +09:00 committed by Mark Brown
parent b423c42021
commit 88fdffa2ee
No known key found for this signature in database
GPG Key ID: 24D68B725D5487D0
1 changed files with 6 additions and 8 deletions

View File

@ -487,10 +487,9 @@ int snd_soc_suspend(struct device *dev)
continue;
for_each_rtd_codec_dai(rtd, i, dai) {
struct snd_soc_dai_driver *drv = dai->driver;
if (drv->ops->digital_mute && dai->playback_active)
drv->ops->digital_mute(dai, 1);
if (dai->playback_active)
snd_soc_dai_digital_mute(dai, 1,
SNDRV_PCM_STREAM_PLAYBACK);
}
}
@ -665,10 +664,9 @@ static void soc_resume_deferred(struct work_struct *work)
continue;
for_each_rtd_codec_dai(rtd, i, dai) {
struct snd_soc_dai_driver *drv = dai->driver;
if (drv->ops->digital_mute && dai->playback_active)
drv->ops->digital_mute(dai, 0);
if (dai->playback_active)
snd_soc_dai_digital_mute(dai, 0,
SNDRV_PCM_STREAM_PLAYBACK);
}
}