summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorGustavo Maciel Dias Vieira2012-01-24 16:27:56 +0100
committerTakashi Iwai2012-01-25 10:00:12 +0100
commita6a600d10aaddf1da38053c4c6b64f50f56176e6 (patch)
tree5261c7a8caf0c17f9e207637fa00739a4e455431 /sound
parentALSA: hda - Fix silent output on ASUS A6Rp (diff)
downloadkernel-qcow2-linux-a6a600d10aaddf1da38053c4c6b64f50f56176e6.tar.gz
kernel-qcow2-linux-a6a600d10aaddf1da38053c4c6b64f50f56176e6.tar.xz
kernel-qcow2-linux-a6a600d10aaddf1da38053c4c6b64f50f56176e6.zip
ALSA: hda: set mute led polarity for laptops with buggy BIOS based on SSID
HP laptop models with buggy BIOS are apparently frequent, including machines with different codecs. Set the polarity of the mute led based on the SSID and include an entry for the HP Mini 110-3100. Signed-off-by: Gustavo Maciel Dias Vieira <gustavo@sagui.org> Tested-by: Predrag Ivanovic <predivan@open.telekom.rs> Cc: <stable@kernel.org> [v3.2+] Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/patch_sigmatel.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c
index 336cfcd324f9..948f0be2f4f3 100644
--- a/sound/pci/hda/patch_sigmatel.c
+++ b/sound/pci/hda/patch_sigmatel.c
@@ -4870,7 +4870,14 @@ static int find_mute_led_cfg(struct hda_codec *codec, int default_polarity)
/* BIOS bug: unfilled OEM string */
if (strstr(dev->name, "HP_Mute_LED_P_G")) {
set_hp_led_gpio(codec);
- spec->gpio_led_polarity = 1;
+ switch (codec->subsystem_id) {
+ case 0x103c148a:
+ spec->gpio_led_polarity = 0;
+ break;
+ default:
+ spec->gpio_led_polarity = 1;
+ break;
+ }
return 1;
}
}