diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-08-19 06:11:06 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-08-19 06:11:06 -0400 |
commit | 1c11ce8118c2055501aa03644a660c7b1e5120c7 (patch) | |
tree | 3d2bb6b5fd348f7a60f36e688d11b4f31fd26d79 /sound/pci | |
parent | fdbc66266c21976027938642f60e0f047149a61a (diff) | |
parent | ae709440edb2d36f51f5ea51cfab931f45c03e02 (diff) |
Merge branch 'fix/hda' into topic/hda
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/patch_analog.c | 6 | ||||
-rw-r--r-- | sound/pci/hda/patch_sigmatel.c | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/sound/pci/hda/patch_analog.c b/sound/pci/hda/patch_analog.c index ab3bcb78ace9..41ec0f865eea 100644 --- a/sound/pci/hda/patch_analog.c +++ b/sound/pci/hda/patch_analog.c | |||
@@ -3836,9 +3836,11 @@ static struct hda_verb ad1884a_laptop_verbs[] = { | |||
3836 | /* Port-F (int speaker) mixer - route only from analog mixer */ | 3836 | /* Port-F (int speaker) mixer - route only from analog mixer */ |
3837 | {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, | 3837 | {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, |
3838 | {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | 3838 | {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, |
3839 | /* Port-F pin */ | 3839 | /* Port-F (int speaker) pin */ |
3840 | {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, | 3840 | {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
3841 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, | 3841 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, |
3842 | /* required for compaq 6530s/6531s speaker output */ | ||
3843 | {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, | ||
3842 | /* Port-C pin - internal mic-in */ | 3844 | /* Port-C pin - internal mic-in */ |
3843 | {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, | 3845 | {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
3844 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7002}, /* raise mic as default */ | 3846 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7002}, /* raise mic as default */ |
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c index eb9ca6f7a77d..742b9c8b25e7 100644 --- a/sound/pci/hda/patch_sigmatel.c +++ b/sound/pci/hda/patch_sigmatel.c | |||
@@ -78,6 +78,7 @@ enum { | |||
78 | STAC_92HD73XX_AUTO, | 78 | STAC_92HD73XX_AUTO, |
79 | STAC_92HD73XX_NO_JD, /* no jack-detection */ | 79 | STAC_92HD73XX_NO_JD, /* no jack-detection */ |
80 | STAC_92HD73XX_REF, | 80 | STAC_92HD73XX_REF, |
81 | STAC_92HD73XX_INTEL, | ||
81 | STAC_DELL_M6_AMIC, | 82 | STAC_DELL_M6_AMIC, |
82 | STAC_DELL_M6_DMIC, | 83 | STAC_DELL_M6_DMIC, |
83 | STAC_DELL_M6_BOTH, | 84 | STAC_DELL_M6_BOTH, |
@@ -1746,6 +1747,7 @@ static const char *stac92hd73xx_models[STAC_92HD73XX_MODELS] = { | |||
1746 | [STAC_92HD73XX_AUTO] = "auto", | 1747 | [STAC_92HD73XX_AUTO] = "auto", |
1747 | [STAC_92HD73XX_NO_JD] = "no-jd", | 1748 | [STAC_92HD73XX_NO_JD] = "no-jd", |
1748 | [STAC_92HD73XX_REF] = "ref", | 1749 | [STAC_92HD73XX_REF] = "ref", |
1750 | [STAC_92HD73XX_INTEL] = "intel", | ||
1749 | [STAC_DELL_M6_AMIC] = "dell-m6-amic", | 1751 | [STAC_DELL_M6_AMIC] = "dell-m6-amic", |
1750 | [STAC_DELL_M6_DMIC] = "dell-m6-dmic", | 1752 | [STAC_DELL_M6_DMIC] = "dell-m6-dmic", |
1751 | [STAC_DELL_M6_BOTH] = "dell-m6", | 1753 | [STAC_DELL_M6_BOTH] = "dell-m6", |
@@ -1758,6 +1760,10 @@ static struct snd_pci_quirk stac92hd73xx_cfg_tbl[] = { | |||
1758 | "DFI LanParty", STAC_92HD73XX_REF), | 1760 | "DFI LanParty", STAC_92HD73XX_REF), |
1759 | SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, | 1761 | SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101, |
1760 | "DFI LanParty", STAC_92HD73XX_REF), | 1762 | "DFI LanParty", STAC_92HD73XX_REF), |
1763 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5002, | ||
1764 | "Intel DG45ID", STAC_92HD73XX_INTEL), | ||
1765 | SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5003, | ||
1766 | "Intel DG45FC", STAC_92HD73XX_INTEL), | ||
1761 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254, | 1767 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254, |
1762 | "Dell Studio 1535", STAC_DELL_M6_DMIC), | 1768 | "Dell Studio 1535", STAC_DELL_M6_DMIC), |
1763 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255, | 1769 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255, |