Skip to content

Commit 6f9441f

Browse files
committed
Merge tag 'asoc-fix-v6.4-rc7' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fix for v6.4 A fix for a typoed iterator in the Intel Soundwire driver, fairly simple on inspection though not reviewed by Intel.
2 parents 82edd1b + 1f1ef7e commit 6f9441f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sound/soc/intel/boards/sof_sdw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1347,7 +1347,7 @@ static int sof_card_dai_links_create(struct device *dev,
13471347
if ((SDW_PART_ID(adr_link->adr_d[i].adr) !=
13481348
SDW_PART_ID(adr_link->adr_d[j].adr)) ||
13491349
(SDW_MFG_ID(adr_link->adr_d[i].adr) !=
1350-
SDW_MFG_ID(adr_link->adr_d[i].adr))) {
1350+
SDW_MFG_ID(adr_link->adr_d[j].adr))) {
13511351
append_codec_type = true;
13521352
goto out;
13531353
}

0 commit comments

Comments
 (0)