On Tue, Mar 10, 2020 at 6:10 PM Kuninori Morimoto < kuninori.morimoto.gx@xxxxxxxxxxx> wrote: > > From: Kuninori Morimoto <kuninori.morimoto.gx@xxxxxxxxxxx> > > Now we can use for_each_rtd_dais(). > Let's use it instead of for_each_rtd_cpu/codec_dais(). > > Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@xxxxxxxxxxx> > --- > sound/soc/soc-dapm.c | 9 +++------ > 1 file changed, 3 insertions(+), 6 deletions(-) > > diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c > index e00a465a7c32..3a3fbf167383 100644 > --- a/sound/soc/soc-dapm.c > +++ b/sound/soc/soc-dapm.c > @@ -4433,14 +4433,11 @@ void snd_soc_dapm_connect_dai_link_widgets(struct > snd_soc_card *card) > static void soc_dapm_stream_event(struct snd_soc_pcm_runtime *rtd, int > stream, > int event) > { > - struct snd_soc_dai *codec_dai; > - struct snd_soc_dai *cpu_dai; > + struct snd_soc_dai *dai; > int i; > > - for_each_rtd_cpu_dais(rtd, i, cpu_dai) > - soc_dapm_dai_stream_event(cpu_dai, stream, event); > - for_each_rtd_codec_dais(rtd, i, codec_dai) > - soc_dapm_dai_stream_event(codec_dai, stream, event); > + for_each_rtd_cpu_dais(rtd, i, dai) > typo here? should be for_each_rtd_dais()? Thanks, Ranjani