Commit 7588d0a2ca8c6b5f180ae899f99d9fc356dad62e

Authored by Takashi Iwai
Committed by Jiri Slaby
1 parent 31c2768302

ALSA: hda/realtek - Fix COEF widget NID for ALC260 replacer fixup

commit 192a98e280e560510a62aca8cfa83b4ae7c095bb upstream.

The conversion to a fixup table for Replacer model with ALC260 in
commit 20f7d928 took the wrong widget NID for COEF setups.  Namely,
NID 0x1a should have been used instead of NID 0x20, which is the
common node for all Realtek codecs but ALC260.

Fixes: 20f7d928fa6e ('ALSA: hda/realtek - Replace ALC260 model=replacer with the auto-parser')
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

sound/pci/hda/patch_realtek.c
... ... @@ -1615,8 +1615,8 @@
1615 1615 [ALC260_FIXUP_REPLACER] = {
1616 1616 .type = HDA_FIXUP_VERBS,
1617 1617 .v.verbs = (const struct hda_verb[]) {
1618   - { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1619   - { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
  1618 + { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
  1619 + { 0x1a, AC_VERB_SET_PROC_COEF, 0x3050 },
1620 1620 { }
1621 1621 },
1622 1622 .chained = true,