From: Bard Liao Date: Wed, 19 Apr 2023 19:55:22 +0000 (-0500) Subject: ASoC: Intel: sof_sdw: set codec_num = 1 if the device is not aggregated X-Git-Tag: Ubuntu-6.5.0-9.9~2825^2^2~6^2~2 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=16373f30777f45823fa68e850b230fa2ef9d7e92;p=mirror_ubuntu-kernels.git ASoC: Intel: sof_sdw: set codec_num = 1 if the device is not aggregated We assume adr_link->num_adr = 1 if a device is not aggregated. However, the assumption is not valid if there are different type devices on the same soundwire link. Signed-off-by: Bard Liao Signed-off-by: Pierre-Louis Bossart Reviewed-by: Rander Wang Link: https://lore.kernel.org/r/20230419195524.46995-6-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/intel/boards/sof_sdw.c b/sound/soc/intel/boards/sof_sdw.c index 7d398b45d48f..e5729df4fd44 100644 --- a/sound/soc/intel/boards/sof_sdw.c +++ b/sound/soc/intel/boards/sof_sdw.c @@ -961,6 +961,7 @@ static int get_slave_info(const struct snd_soc_acpi_link_adr *adr_link, cpu_dai_id[index++] = ffs(adr_link->mask) - 1; if (!adr_d->endpoints->aggregated || no_aggregation) { *cpu_dai_num = 1; + *codec_num = 1; *group_id = 0; return 0; }