diff options
author | Takashi Iwai <tiwai@suse.de> | 2011-12-20 09:32:39 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-12-20 09:32:39 -0500 |
commit | db9c6f842fa957b41984cd8ceea1f07c53fb3fbf (patch) | |
tree | 5fb563b992b25b43a549b7b9a325d5dfdba6d9a5 /sound/pci | |
parent | a1585d769731323a792277f15b7a3ee2ae36b698 (diff) | |
parent | 645e903528ca6cd510f9ac71a6a23de1a4d931e3 (diff) |
Merge branch 'fix/hda' into topic/hda
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/hda_intel.c | 4 | ||||
-rw-r--r-- | sound/pci/hda/patch_sigmatel.c | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index 8d17963ac021..4045b0cc463e 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c | |||
@@ -2498,6 +2498,7 @@ static struct snd_pci_quirk position_fix_list[] __devinitdata = { | |||
2498 | SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", POS_FIX_LPIB), | 2498 | SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", POS_FIX_LPIB), |
2499 | SND_PCI_QUIRK(0x1043, 0x81b3, "ASUS", POS_FIX_LPIB), | 2499 | SND_PCI_QUIRK(0x1043, 0x81b3, "ASUS", POS_FIX_LPIB), |
2500 | SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS M2V", POS_FIX_LPIB), | 2500 | SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS M2V", POS_FIX_LPIB), |
2501 | SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS 1101HA", POS_FIX_LPIB), | ||
2501 | SND_PCI_QUIRK(0x104d, 0x9069, "Sony VPCS11V9E", POS_FIX_LPIB), | 2502 | SND_PCI_QUIRK(0x104d, 0x9069, "Sony VPCS11V9E", POS_FIX_LPIB), |
2502 | SND_PCI_QUIRK(0x1297, 0x3166, "Shuttle", POS_FIX_LPIB), | 2503 | SND_PCI_QUIRK(0x1297, 0x3166, "Shuttle", POS_FIX_LPIB), |
2503 | SND_PCI_QUIRK(0x1458, 0xa022, "ga-ma770-ud3", POS_FIX_LPIB), | 2504 | SND_PCI_QUIRK(0x1458, 0xa022, "ga-ma770-ud3", POS_FIX_LPIB), |
@@ -2993,7 +2994,8 @@ static DEFINE_PCI_DEVICE_TABLE(azx_ids) = { | |||
2993 | /* SCH */ | 2994 | /* SCH */ |
2994 | { PCI_DEVICE(0x8086, 0x811b), | 2995 | { PCI_DEVICE(0x8086, 0x811b), |
2995 | .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_SCH_SNOOP | | 2996 | .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_SCH_SNOOP | |
2996 | AZX_DCAPS_BUFSIZE}, | 2997 | AZX_DCAPS_BUFSIZE | AZX_DCAPS_POSFIX_LPIB }, /* Poulsbo */ |
2998 | /* ICH */ | ||
2997 | { PCI_DEVICE(0x8086, 0x2668), | 2999 | { PCI_DEVICE(0x8086, 0x2668), |
2998 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC | | 3000 | .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC | |
2999 | AZX_DCAPS_BUFSIZE }, /* ICH6 */ | 3001 | AZX_DCAPS_BUFSIZE }, /* ICH6 */ |
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c index 65f517930991..aaed004eacc5 100644 --- a/sound/pci/hda/patch_sigmatel.c +++ b/sound/pci/hda/patch_sigmatel.c | |||
@@ -4925,6 +4925,12 @@ static int find_mute_led_cfg(struct hda_codec *codec, int default_polarity) | |||
4925 | set_hp_led_gpio(codec); | 4925 | set_hp_led_gpio(codec); |
4926 | return 1; | 4926 | return 1; |
4927 | } | 4927 | } |
4928 | /* BIOS bug: unfilled OEM string */ | ||
4929 | if (strstr(dev->name, "HP_Mute_LED_P_G")) { | ||
4930 | set_hp_led_gpio(codec); | ||
4931 | spec->gpio_led_polarity = 1; | ||
4932 | return 1; | ||
4933 | } | ||
4928 | } | 4934 | } |
4929 | 4935 | ||
4930 | /* | 4936 | /* |