projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1098b7c
)
ALSA: hda - Fix the wrong pincaps set in ALC861VD dallas/hp fixup
author
Takashi Iwai
<
[email protected]
>
Mon, 17 Dec 2012 19:06:49 +0000
(20:06 +0100)
committer
Takashi Iwai
<
[email protected]
>
Mon, 17 Dec 2012 19:10:50 +0000
(20:10 +0100)
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.
Cc: <
[email protected]
> [v3.2+]
Signed-off-by: Takashi Iwai <
[email protected]
>
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 16d210a7f158e250cdb88b40a3e5160b6478527f..6ee34593774a4d155cd595ab96bbc7318f2dc6d9 100644
(file)
--- a/
sound/pci/hda/patch_realtek.c
+++ b/
sound/pci/hda/patch_realtek.c
@@
-6570,8
+6570,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);
}
}