Commit bb97142b authored by Liam Girdwood's avatar Liam Girdwood Committed by Mark Brown

ASoC: topology: Fix usage of SND_SOC_TPLG_INDEX_ALL during load

SND_SOC_TPLG_INDEX_ALL is used by drivers to tell the core to load
all topology component indexes, not just the index in the header.
Fix this so that SND_SOC_TPLG_INDEX_ALL will load all components no matter
their index.
Signed-off-by: default avatarLiam Girdwood <liam.r.girdwood@linux.intel.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent ebd259d3
...@@ -2381,7 +2381,7 @@ static int soc_tplg_load_header(struct soc_tplg *tplg, ...@@ -2381,7 +2381,7 @@ static int soc_tplg_load_header(struct soc_tplg *tplg,
/* check for matching ID */ /* check for matching ID */
if (hdr->index != tplg->req_index && if (hdr->index != tplg->req_index &&
hdr->index != SND_SOC_TPLG_INDEX_ALL) tplg->req_index != SND_SOC_TPLG_INDEX_ALL)
return 0; return 0;
tplg->index = hdr->index; tplg->index = hdr->index;
......
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