aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2011-11-29 07:01:30 -0500
committerTakashi Iwai <tiwai@suse.de>2011-11-29 07:01:30 -0500
commit542c9a0a2fa351149c4a3467589a54cafcf0a1dd (patch)
tree55fcbcd027fec1c24206416da4eee6ad03f2a72d /sound/pci
parentae7cc709f2ec11b49fc31b20cd8c943794ae9576 (diff)
ALSA: hda - Avoid touching mute-VREF pin for IDT codecs
Some HP laptops use a pin VREF for controlling the mute LED, and such a pin shouldn't be powered off. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r--sound/pci/hda/patch_sigmatel.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c
index f3658658548e..f4f4ebeed9ea 100644
--- a/sound/pci/hda/patch_sigmatel.c
+++ b/sound/pci/hda/patch_sigmatel.c
@@ -4441,7 +4441,9 @@ static int stac92xx_init(struct hda_codec *codec)
4441 int pinctl, def_conf; 4441 int pinctl, def_conf;
4442 4442
4443 /* power on when no jack detection is available */ 4443 /* power on when no jack detection is available */
4444 if (!spec->hp_detect) { 4444 /* or when the VREF is used for controlling LED */
4445 if (!spec->hp_detect ||
4446 (spec->gpio_led > 8 && spec->gpio_led == nid)) {
4445 stac_toggle_power_map(codec, nid, 1); 4447 stac_toggle_power_map(codec, nid, 1);
4446 continue; 4448 continue;
4447 } 4449 }