diff options
author | Takashi Iwai <tiwai@suse.de> | 2012-02-29 09:41:17 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-02-29 09:41:39 +0100 |
commit | 7bff172a352a2fbe9856bba517d71a2072aab041 (patch) | |
tree | 86ba88140748d667f61005c1bff015ba37f78b2d /sound/pci | |
parent | 87c9e7d7027643bf248b396c15c804456e967fcd (diff) | |
download | op-kernel-dev-7bff172a352a2fbe9856bba517d71a2072aab041.zip op-kernel-dev-7bff172a352a2fbe9856bba517d71a2072aab041.tar.gz |
ALSA: hda - Always set HP pin in unsol handler for STAC/IDT codecs
A bug report with an old Sony laptop showed that we can't rely on BIOS
setting the pins of headphones but the driver should set always by
itself.
Cc: <stable@kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/patch_sigmatel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c index 6345df1..9dbb573 100644 --- a/sound/pci/hda/patch_sigmatel.c +++ b/sound/pci/hda/patch_sigmatel.c @@ -4629,7 +4629,7 @@ static void stac92xx_hp_detect(struct hda_codec *codec) unsigned int val = AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN; if (no_hp_sensing(spec, i)) continue; - if (presence) + if (1 /*presence*/) stac92xx_set_pinctl(codec, cfg->hp_pins[i], val); #if 0 /* FIXME */ /* Resetting the pinctl like below may lead to (a sort of) regressions |