Skip to content

Commit a7528e9

Browse files
charleskeepaxbroonie
authored andcommitted
ASoC: Intel: soc-acpi: arl: Correct order of cs42l43 matches
Matches should go from more specific to less specific, correct the ordering of two cs42l43 entries. Fixes: c052406 ("ASoC: Intel: soc-acpi: arl: Add match entries for new cs42l43 laptops") Signed-off-by: Charles Keepax <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Mark Brown <[email protected]>
1 parent be2e1a6 commit a7528e9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

sound/soc/intel/common/soc-acpi-intel-arl-match.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -468,17 +468,17 @@ struct snd_soc_acpi_mach snd_soc_acpi_intel_arl_sdw_machines[] = {
468468
.get_function_tplg_files = sof_sdw_get_tplg_files,
469469
},
470470
{
471-
.link_mask = BIT(2),
472-
.links = arl_cs42l43_l2,
471+
.link_mask = BIT(2) | BIT(3),
472+
.links = arl_cs42l43_l2_cs35l56_l3,
473473
.drv_name = "sof_sdw",
474-
.sof_tplg_filename = "sof-arl-cs42l43-l2.tplg",
474+
.sof_tplg_filename = "sof-arl-cs42l43-l2-cs35l56-l3.tplg",
475475
.get_function_tplg_files = sof_sdw_get_tplg_files,
476476
},
477477
{
478-
.link_mask = BIT(2) | BIT(3),
479-
.links = arl_cs42l43_l2_cs35l56_l3,
478+
.link_mask = BIT(2),
479+
.links = arl_cs42l43_l2,
480480
.drv_name = "sof_sdw",
481-
.sof_tplg_filename = "sof-arl-cs42l43-l2-cs35l56-l3.tplg",
481+
.sof_tplg_filename = "sof-arl-cs42l43-l2.tplg",
482482
.get_function_tplg_files = sof_sdw_get_tplg_files,
483483
},
484484
{

0 commit comments

Comments
 (0)