From: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
To: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Cc: alsa-devel@alsa-project.org, sound-open-firmware@alsa-project.org
Subject: Re: [PATCH 1/2] ASoC: SOF: (cosmetic) use for_each_pcm_streams() in sof_dai_load()
Date: Tue, 24 Mar 2020 15:06:22 +0100 [thread overview]
Message-ID: <20200324140622.GB29623@ubuntu> (raw)
In-Reply-To: <451eb340-adf9-bb86-e4ef-4dee6763966b@linux.intel.com>
Hi Pierre,
On Tue, Mar 24, 2020 at 08:29:43AM -0500, Pierre-Louis Bossart wrote:
> Guennadi, who are the intended reviewers/maintainers here and which tree is
> this supposed to be merged on?
>
> Patch0 has everyone copied, patch 1/2 only target mailing lists, and I
> haven't seen any PR/CI for this?
Yes, as explained in my reply to Mark, I didn't want to spam everybody's mail
boxes with all the patches, so I only copied the "patch 0" to maintainers
and sent the patches themselves to lists only.
> I am flexible with processes, I am just lost here on what you had in mind.
I was advised to make this a separate patch from my VirtIO patch series, so
I did that and sent it again directly to the mailing lists. But we can take
it back to the local review process, if you prefer.
Thanks
Guennadi
> Thanks
> -Pierre
>
> On 3/24/20 7:29 AM, Guennadi Liakhovetski wrote:
> > Use for_each_pcm_streams() to enumerate streams in sof_dai_load()
> > instead of doing that manually.
> >
> > Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
> > ---
> > sound/soc/sof/topology.c | 13 ++++++++-----
> > 1 file changed, 8 insertions(+), 5 deletions(-)
> >
> > diff --git a/sound/soc/sof/topology.c b/sound/soc/sof/topology.c
> > index 058de94..54437ca 100644
> > --- a/sound/soc/sof/topology.c
> > +++ b/sound/soc/sof/topology.c
> > @@ -2448,7 +2448,7 @@ static int sof_dai_load(struct snd_soc_component *scomp, int index,
> > struct snd_soc_tplg_stream_caps *caps;
> > struct snd_soc_tplg_private *private = &pcm->priv;
> > struct snd_sof_pcm *spcm;
> > - int stream = SNDRV_PCM_STREAM_PLAYBACK;
> > + int stream;
> > int ret = 0;
> > /* nothing to do for BEs atm */
> > @@ -2460,8 +2460,9 @@ static int sof_dai_load(struct snd_soc_component *scomp, int index,
> > return -ENOMEM;
> > spcm->scomp = scomp;
> > - spcm->stream[SNDRV_PCM_STREAM_PLAYBACK].comp_id = COMP_ID_UNASSIGNED;
> > - spcm->stream[SNDRV_PCM_STREAM_CAPTURE].comp_id = COMP_ID_UNASSIGNED;
> > +
> > + for_each_pcm_streams(stream)
> > + spcm->stream[stream].comp_id = COMP_ID_UNASSIGNED;
> > spcm->pcm = *pcm;
> > dev_dbg(scomp->dev, "tplg: load pcm %s\n", pcm->dai_name);
> > @@ -2482,8 +2483,10 @@ static int sof_dai_load(struct snd_soc_component *scomp, int index,
> > if (!spcm->pcm.playback)
> > goto capture;
> > + stream = SNDRV_PCM_STREAM_PLAYBACK;
> > +
> > dev_vdbg(scomp->dev, "tplg: pcm %s stream tokens: playback d0i3:%d\n",
> > - spcm->pcm.pcm_name, spcm->stream[0].d0i3_compatible);
> > + spcm->pcm.pcm_name, spcm->stream[stream].d0i3_compatible);
> > caps = &spcm->pcm.caps[stream];
> > @@ -2513,7 +2516,7 @@ static int sof_dai_load(struct snd_soc_component *scomp, int index,
> > return ret;
> > dev_vdbg(scomp->dev, "tplg: pcm %s stream tokens: capture d0i3:%d\n",
> > - spcm->pcm.pcm_name, spcm->stream[1].d0i3_compatible);
> > + spcm->pcm.pcm_name, spcm->stream[stream].d0i3_compatible);
> > caps = &spcm->pcm.caps[stream];
> >
next prev parent reply other threads:[~2020-03-24 14:07 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-24 12:29 [PATCH 0/2] ASoC: SOF: initialise work immediately Guennadi Liakhovetski
2020-03-24 12:29 ` [PATCH 1/2] ASoC: SOF: (cosmetic) use for_each_pcm_streams() in sof_dai_load() Guennadi Liakhovetski
2020-03-24 13:29 ` Pierre-Louis Bossart
2020-03-24 14:06 ` Guennadi Liakhovetski [this message]
2020-03-24 12:29 ` [PATCH 2/2] ASoC: SOF: fix uninitialised "work" with VirtIO Guennadi Liakhovetski
2020-03-24 13:30 ` [PATCH 0/2] ASoC: SOF: initialise work immediately Mark Brown
2020-03-24 13:58 ` Guennadi Liakhovetski
2020-03-24 14:48 ` Mark Brown
2020-03-25 11:10 ` Guennadi Liakhovetski
2020-03-25 11:10 ` Guennadi Liakhovetski
2020-03-25 11:20 ` Mark Brown
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200324140622.GB29623@ubuntu \
--to=guennadi.liakhovetski@linux.intel.com \
--cc=alsa-devel@alsa-project.org \
--cc=pierre-louis.bossart@linux.intel.com \
--cc=sound-open-firmware@alsa-project.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.