* [PATCH] hda: add model for Intel DG45ID/DG45FC boards
@ 2009-08-19 9:05 Wu Fengguang
2009-08-19 10:12 ` Takashi Iwai
0 siblings, 1 reply; 2+ messages in thread
From: Wu Fengguang @ 2009-08-19 9:05 UTC (permalink / raw)
To: Takashi Iwai; +Cc: alsa-devel@alsa-project.org
The BIOS pin configs are in fact correct and shall not be overwritten.
Signed-off-by: Wu Fengguang <fengguang.wu@intel.com>
---
sound/pci/hda/patch_sigmatel.c | 6 ++++++
1 file changed, 6 insertions(+)
--- sound-2.6.orig/sound/pci/hda/patch_sigmatel.c 2009-08-19 16:59:50.000000000 +0800
+++ sound-2.6/sound/pci/hda/patch_sigmatel.c 2009-08-19 16:59:51.000000000 +0800
@@ -78,6 +78,7 @@ enum {
STAC_92HD73XX_AUTO,
STAC_92HD73XX_NO_JD, /* no jack-detection */
STAC_92HD73XX_REF,
+ STAC_92HD73XX_INTEL,
STAC_DELL_M6_AMIC,
STAC_DELL_M6_DMIC,
STAC_DELL_M6_BOTH,
@@ -1775,6 +1776,7 @@ static const char *stac92hd73xx_models[S
[STAC_92HD73XX_AUTO] = "auto",
[STAC_92HD73XX_NO_JD] = "no-jd",
[STAC_92HD73XX_REF] = "ref",
+ [STAC_92HD73XX_INTEL] = "intel",
[STAC_DELL_M6_AMIC] = "dell-m6-amic",
[STAC_DELL_M6_DMIC] = "dell-m6-dmic",
[STAC_DELL_M6_BOTH] = "dell-m6",
@@ -1787,6 +1789,10 @@ static struct snd_pci_quirk stac92hd73xx
"DFI LanParty", STAC_92HD73XX_REF),
SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
"DFI LanParty", STAC_92HD73XX_REF),
+ SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5002,
+ "Intel DG45ID", STAC_92HD73XX_INTEL),
+ SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5003,
+ "Intel DG45FC", STAC_92HD73XX_INTEL),
SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254,
"Dell Studio 1535", STAC_DELL_M6_DMIC),
SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255,
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] hda: add model for Intel DG45ID/DG45FC boards
2009-08-19 9:05 [PATCH] hda: add model for Intel DG45ID/DG45FC boards Wu Fengguang
@ 2009-08-19 10:12 ` Takashi Iwai
0 siblings, 0 replies; 2+ messages in thread
From: Takashi Iwai @ 2009-08-19 10:12 UTC (permalink / raw)
To: Wu Fengguang; +Cc: alsa-devel@alsa-project.org
At Wed, 19 Aug 2009 17:05:11 +0800,
Wu Fengguang wrote:
>
> The BIOS pin configs are in fact correct and shall not be overwritten.
>
> Signed-off-by: Wu Fengguang <fengguang.wu@intel.com>
Applied now. Thanks.
Takashi
> ---
> sound/pci/hda/patch_sigmatel.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> --- sound-2.6.orig/sound/pci/hda/patch_sigmatel.c 2009-08-19 16:59:50.000000000 +0800
> +++ sound-2.6/sound/pci/hda/patch_sigmatel.c 2009-08-19 16:59:51.000000000 +0800
> @@ -78,6 +78,7 @@ enum {
> STAC_92HD73XX_AUTO,
> STAC_92HD73XX_NO_JD, /* no jack-detection */
> STAC_92HD73XX_REF,
> + STAC_92HD73XX_INTEL,
> STAC_DELL_M6_AMIC,
> STAC_DELL_M6_DMIC,
> STAC_DELL_M6_BOTH,
> @@ -1775,6 +1776,7 @@ static const char *stac92hd73xx_models[S
> [STAC_92HD73XX_AUTO] = "auto",
> [STAC_92HD73XX_NO_JD] = "no-jd",
> [STAC_92HD73XX_REF] = "ref",
> + [STAC_92HD73XX_INTEL] = "intel",
> [STAC_DELL_M6_AMIC] = "dell-m6-amic",
> [STAC_DELL_M6_DMIC] = "dell-m6-dmic",
> [STAC_DELL_M6_BOTH] = "dell-m6",
> @@ -1787,6 +1789,10 @@ static struct snd_pci_quirk stac92hd73xx
> "DFI LanParty", STAC_92HD73XX_REF),
> SND_PCI_QUIRK(PCI_VENDOR_ID_DFI, 0x3101,
> "DFI LanParty", STAC_92HD73XX_REF),
> + SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5002,
> + "Intel DG45ID", STAC_92HD73XX_INTEL),
> + SND_PCI_QUIRK(PCI_VENDOR_ID_INTEL, 0x5003,
> + "Intel DG45FC", STAC_92HD73XX_INTEL),
> SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0254,
> "Dell Studio 1535", STAC_DELL_M6_DMIC),
> SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0255,
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-08-19 10:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-19 9:05 [PATCH] hda: add model for Intel DG45ID/DG45FC boards Wu Fengguang
2009-08-19 10:12 ` Takashi Iwai
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.