Commit b3dea624 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: use snd_soc_xxx_active()

We have snd_soc_dai/dai_stream/component_active() macro
This patch uses it.
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-by: default avatarRanjani Sridharan <ranjani.sridharan@linux.intel.com>
Link: https://lore.kernel.org/r/8736826n44.wl-kuninori.morimoto.gx@renesas.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 5552f8d7
...@@ -231,10 +231,10 @@ static int soc_compr_free(struct snd_compr_stream *cstream) ...@@ -231,10 +231,10 @@ static int soc_compr_free(struct snd_compr_stream *cstream)
snd_soc_dai_digital_mute(codec_dai, 1, cstream->direction); snd_soc_dai_digital_mute(codec_dai, 1, cstream->direction);
if (!cpu_dai->active) if (!snd_soc_dai_active(cpu_dai))
cpu_dai->rate = 0; cpu_dai->rate = 0;
if (!codec_dai->active) if (!snd_soc_dai_active(codec_dai))
codec_dai->rate = 0; codec_dai->rate = 0;
if (rtd->dai_link->compr_ops && rtd->dai_link->compr_ops->shutdown) if (rtd->dai_link->compr_ops && rtd->dai_link->compr_ops->shutdown)
......
...@@ -372,7 +372,8 @@ void snd_soc_close_delayed_work(struct snd_soc_pcm_runtime *rtd) ...@@ -372,7 +372,8 @@ void snd_soc_close_delayed_work(struct snd_soc_pcm_runtime *rtd)
dev_dbg(rtd->dev, dev_dbg(rtd->dev,
"ASoC: pop wq checking: %s status: %s waiting: %s\n", "ASoC: pop wq checking: %s status: %s waiting: %s\n",
codec_dai->driver->playback.stream_name, codec_dai->driver->playback.stream_name,
codec_dai->stream_active[playback] ? "active" : "inactive", snd_soc_dai_stream_active(codec_dai, playback) ?
"active" : "inactive",
rtd->pop_wait ? "yes" : "no"); rtd->pop_wait ? "yes" : "no");
/* are we waiting on this codec DAI stream */ /* are we waiting on this codec DAI stream */
...@@ -546,7 +547,7 @@ int snd_soc_suspend(struct device *dev) ...@@ -546,7 +547,7 @@ int snd_soc_suspend(struct device *dev)
continue; continue;
for_each_rtd_codec_dais(rtd, i, dai) { for_each_rtd_codec_dais(rtd, i, dai) {
if (dai->stream_active[playback]) if (snd_soc_dai_stream_active(dai, playback))
snd_soc_dai_digital_mute(dai, 1, playback); snd_soc_dai_digital_mute(dai, 1, playback);
} }
} }
...@@ -688,7 +689,7 @@ static void soc_resume_deferred(struct work_struct *work) ...@@ -688,7 +689,7 @@ static void soc_resume_deferred(struct work_struct *work)
continue; continue;
for_each_rtd_codec_dais(rtd, i, dai) { for_each_rtd_codec_dais(rtd, i, dai) {
if (dai->stream_active[playback]) if (snd_soc_dai_stream_active(dai, playback))
snd_soc_dai_digital_mute(dai, 0, playback); snd_soc_dai_digital_mute(dai, 0, playback);
} }
} }
...@@ -718,7 +719,7 @@ int snd_soc_resume(struct device *dev) ...@@ -718,7 +719,7 @@ int snd_soc_resume(struct device *dev)
/* activate pins from sleep state */ /* activate pins from sleep state */
for_each_card_components(card, component) for_each_card_components(card, component)
if (component->active) if (snd_soc_component_active(component))
pinctrl_pm_select_default_state(component->dev); pinctrl_pm_select_default_state(component->dev);
dev_dbg(dev, "ASoC: Scheduling resume work\n"); dev_dbg(dev, "ASoC: Scheduling resume work\n");
...@@ -1943,7 +1944,7 @@ static int snd_soc_bind_card(struct snd_soc_card *card) ...@@ -1943,7 +1944,7 @@ static int snd_soc_bind_card(struct snd_soc_card *card)
/* deactivate pins to sleep state */ /* deactivate pins to sleep state */
for_each_card_components(card, component) for_each_card_components(card, component)
if (!component->active) if (!snd_soc_component_active(component))
pinctrl_pm_select_sleep_state(component->dev); pinctrl_pm_select_sleep_state(component->dev);
probe_end: probe_end:
......
...@@ -750,7 +750,7 @@ static int soc_pcm_close(struct snd_pcm_substream *substream) ...@@ -750,7 +750,7 @@ static int soc_pcm_close(struct snd_pcm_substream *substream)
} }
for_each_rtd_components(rtd, i, component) for_each_rtd_components(rtd, i, component)
if (!component->active) if (!snd_soc_component_active(component))
pinctrl_pm_select_sleep_state(component->dev); pinctrl_pm_select_sleep_state(component->dev);
return 0; return 0;
...@@ -844,7 +844,7 @@ static int soc_pcm_open(struct snd_pcm_substream *substream) ...@@ -844,7 +844,7 @@ static int soc_pcm_open(struct snd_pcm_substream *substream)
/* Symmetry only applies if we've already got an active stream. */ /* Symmetry only applies if we've already got an active stream. */
for_each_rtd_dais(rtd, i, dai) { for_each_rtd_dais(rtd, i, dai) {
if (dai->active) { if (snd_soc_dai_active(dai)) {
ret = soc_pcm_apply_symmetry(substream, dai); ret = soc_pcm_apply_symmetry(substream, dai);
if (ret != 0) if (ret != 0)
goto config_err; goto config_err;
...@@ -882,7 +882,7 @@ static int soc_pcm_open(struct snd_pcm_substream *substream) ...@@ -882,7 +882,7 @@ static int soc_pcm_open(struct snd_pcm_substream *substream)
} }
for_each_rtd_components(rtd, i, component) for_each_rtd_components(rtd, i, component)
if (!component->active) if (!snd_soc_component_active(component))
pinctrl_pm_select_sleep_state(component->dev); pinctrl_pm_select_sleep_state(component->dev);
return ret; return ret;
...@@ -1136,9 +1136,9 @@ static int soc_pcm_hw_free(struct snd_pcm_substream *substream) ...@@ -1136,9 +1136,9 @@ static int soc_pcm_hw_free(struct snd_pcm_substream *substream)
/* clear the corresponding DAIs parameters when going to be inactive */ /* clear the corresponding DAIs parameters when going to be inactive */
for_each_rtd_dais(rtd, i, dai) { for_each_rtd_dais(rtd, i, dai) {
int active = dai->stream_active[substream->stream]; int active = snd_soc_dai_stream_active(dai, substream->stream);
if (dai->active == 1) { if (snd_soc_dai_active(dai) == 1) {
dai->rate = 0; dai->rate = 0;
dai->channels = 0; dai->channels = 0;
dai->sample_bits = 0; dai->sample_bits = 0;
...@@ -1907,7 +1907,7 @@ static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream, ...@@ -1907,7 +1907,7 @@ static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream,
for_each_rtd_cpu_dais (fe, i, fe_cpu_dai) { for_each_rtd_cpu_dais (fe, i, fe_cpu_dai) {
/* Symmetry only applies if we've got an active stream. */ /* Symmetry only applies if we've got an active stream. */
if (fe_cpu_dai->active) { if (snd_soc_dai_active(fe_cpu_dai)) {
err = soc_pcm_apply_symmetry(fe_substream, fe_cpu_dai); err = soc_pcm_apply_symmetry(fe_substream, fe_cpu_dai);
if (err < 0) if (err < 0)
return err; return err;
...@@ -1936,7 +1936,7 @@ static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream, ...@@ -1936,7 +1936,7 @@ static int dpcm_apply_symmetry(struct snd_pcm_substream *fe_substream,
/* Symmetry only applies if we've got an active stream. */ /* Symmetry only applies if we've got an active stream. */
for_each_rtd_dais(rtd, i, dai) { for_each_rtd_dais(rtd, i, dai) {
if (dai->active) { if (snd_soc_dai_active(dai)) {
err = soc_pcm_apply_symmetry(fe_substream, dai); err = soc_pcm_apply_symmetry(fe_substream, dai);
if (err < 0) if (err < 0)
return err; return err;
...@@ -2709,7 +2709,7 @@ static int soc_dpcm_fe_runtime_update(struct snd_soc_pcm_runtime *fe, int new) ...@@ -2709,7 +2709,7 @@ static int soc_dpcm_fe_runtime_update(struct snd_soc_pcm_runtime *fe, int new)
return 0; return 0;
/* only check active links */ /* only check active links */
if (!asoc_rtd_to_cpu(fe, 0)->active) if (!snd_soc_dai_active(asoc_rtd_to_cpu(fe, 0)))
return 0; return 0;
/* DAPM sync will call this to update DSP paths */ /* DAPM sync will call this to update DSP paths */
...@@ -2724,8 +2724,8 @@ static int soc_dpcm_fe_runtime_update(struct snd_soc_pcm_runtime *fe, int new) ...@@ -2724,8 +2724,8 @@ static int soc_dpcm_fe_runtime_update(struct snd_soc_pcm_runtime *fe, int new)
continue; continue;
/* skip if FE isn't currently playing/capturing */ /* skip if FE isn't currently playing/capturing */
if (!asoc_rtd_to_cpu(fe, 0)->stream_active[stream] || if (!snd_soc_dai_stream_active(asoc_rtd_to_cpu(fe, 0), stream) ||
!asoc_rtd_to_codec(fe, 0)->stream_active[stream]) !snd_soc_dai_stream_active(asoc_rtd_to_codec(fe, 0), stream))
continue; continue;
paths = dpcm_path_get(fe, stream, &list); paths = dpcm_path_get(fe, stream, &list);
......
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