ALSA: hda/realtek - Fix COEF widget NID for ALC260 replacer fixup
authorTakashi Iwai <tiwai@suse.de>
Mon, 2 Jun 2014 13:16:07 +0000 (15:16 +0200)
committerTakashi Iwai <tiwai@suse.de>
Mon, 2 Jun 2014 14:48:28 +0000 (16:48 +0200)
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>
sound/pci/hda/patch_realtek.c

index 0e3a7f6c8060d5b2cbb2d268263f6af74b53f8a9..d943508a7f489ccb12e70c455153cc07d3ec11e5 100644 (file)
@@ -1665,8 +1665,8 @@ static const struct hda_fixup alc260_fixups[] = {
        [ALC260_FIXUP_REPLACER] = {
                .type = HDA_FIXUP_VERBS,
                .v.verbs = (const struct hda_verb[]) {
-                       { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
-                       { 0x20, AC_VERB_SET_PROC_COEF,  0x3050 },
+                       { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
+                       { 0x1a, AC_VERB_SET_PROC_COEF,  0x3050 },
                        { }
                },
                .chained = true,
This page took 0.030215 seconds and 5 git commands to generate.