projects
/
platform
/
kernel
/
linux-stable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
740ccba
)
ALSA: hda - Fix the wrong pincaps set in ALC861VD dallas/hp fixup
author
Takashi Iwai
<tiwai@suse.de>
Mon, 17 Dec 2012 19:06:49 +0000
(20:06 +0100)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Fri, 11 Jan 2013 17:06:49 +0000
(09:06 -0800)
commit
b78562b10fa66175e30b76073e32a0ad8d92aa83
upstream.
The workaround to force VREF50 for dallas/hp model with ALC861VD
was introduced in commit
8fdcb6fe4204bdb4c6991652717ab5063751414e
,
but it contained wrong pincap override bits.
This patch fixes to exclude VREF80 pincap bit correctly.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
sound/pci/hda/patch_realtek.c
patch
|
blob
|
history
diff --git
a/sound/pci/hda/patch_realtek.c
b/sound/pci/hda/patch_realtek.c
index 29774e22bdaddb1d1f1423455665b44d72140036..7f2a10901ae439e3f71aa96c8d11d6b4a1eda189 100644
(file)
--- a/
sound/pci/hda/patch_realtek.c
+++ b/
sound/pci/hda/patch_realtek.c
@@
-6520,8
+6520,8
@@
static void alc861vd_fixup_dallas(struct hda_codec *codec,
const struct alc_fixup *fix, int action)
{
if (action == ALC_FIXUP_ACT_PRE_PROBE) {
- snd_hda_override_pin_caps(codec, 0x18, 0x0000
171
4);
- snd_hda_override_pin_caps(codec, 0x19, 0x0000
171
c);
+ snd_hda_override_pin_caps(codec, 0x18, 0x0000
073
4);
+ snd_hda_override_pin_caps(codec, 0x19, 0x0000
073
c);
}
}