mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 12:42:02 +00:00
ASoC: SOF: (cosmetic) use for_each_pcm_streams() in sof_dai_load()
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> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Reviewed-by: Kai Vehmanen <kai.vehmanen@linux.intel.com> Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> Link: https://lore.kernel.org/r/20200325211233.27394-3-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
66de6beb93
commit
c688cf1d3a
@ -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 @@ capture:
|
||||
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];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user