aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2011-01-12 03:03:05 -0500
committerTakashi Iwai <tiwai@suse.de>2011-01-12 03:03:05 -0500
commit700b65cee958d81b16c48378d5759c46d01e24d0 (patch)
treefb992a9e72436ceaf3f9a3fc7f3b79407d2a5766
parent1a99d4a46c4d08da3418a2079b78ec5daa2a6408 (diff)
ALSA: hda - Add missing NID 0x19 fixup for Sony VAIO
With GPIO2-fixup, another fixup for NID 0x19 was missing because the fixup is applied only once. Add the corresponding verb to the entry. Signed-off-by: Takashi Iwai <tiwai@suse.de> Cc: <stable@kernel.org>
-rw-r--r--sound/pci/hda/patch_realtek.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index f44d0e355835..98c9cd8f6471 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -14846,6 +14846,7 @@ static const struct alc_fixup alc269_fixups[] = {
14846 {0x01, AC_VERB_SET_GPIO_MASK, 0x04}, 14846 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
14847 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04}, 14847 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
14848 {0x01, AC_VERB_SET_GPIO_DATA, 0x00}, 14848 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
14849 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
14849 { } 14850 { }
14850 } 14851 }
14851 }, 14852 },