Commit 192a98e280e560510a62aca8cfa83b4ae7c095bb

Authored by Takashi Iwai
1 parent e30cf2d2be

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

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')
Cc: <stable@vger.kernel.org> [v3.4+]
Signed-off-by: Takashi Iwai <tiwai@suse.de>

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

sound/pci/hda/patch_realtek.c
... ... @@ -1665,8 +1665,8 @@
1665 1665 [ALC260_FIXUP_REPLACER] = {
1666 1666 .type = HDA_FIXUP_VERBS,
1667 1667 .v.verbs = (const struct hda_verb[]) {
1668   - { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1669   - { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
  1668 + { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
  1669 + { 0x1a, AC_VERB_SET_PROC_COEF, 0x3050 },
1670 1670 { }
1671 1671 },
1672 1672 .chained = true,