svn commit: r184207 - head/sys/dev/sound/pci/hda
Alexander Motin
mav at FreeBSD.org
Thu Oct 23 18:30:07 UTC 2008
Author: mav
Date: Thu Oct 23 18:30:06 2008
New Revision: 184207
URL: http://svn.freebsd.org/changeset/base/184207
Log:
Add Intel ICH10 and SCH HDA controllers PCI IDs.
Modified:
head/sys/dev/sound/pci/hda/hdac.c
Modified: head/sys/dev/sound/pci/hda/hdac.c
==============================================================================
--- head/sys/dev/sound/pci/hda/hdac.c Thu Oct 23 16:06:49 2008 (r184206)
+++ head/sys/dev/sound/pci/hda/hdac.c Thu Oct 23 18:30:06 2008 (r184207)
@@ -148,6 +148,8 @@ SND_DECLARE_FILE("$FreeBSD$");
#define HDA_INTEL_82801G HDA_MODEL_CONSTRUCT(INTEL, 0x27d8)
#define HDA_INTEL_82801H HDA_MODEL_CONSTRUCT(INTEL, 0x284b)
#define HDA_INTEL_82801I HDA_MODEL_CONSTRUCT(INTEL, 0x293e)
+#define HDA_INTEL_82801J HDA_MODEL_CONSTRUCT(INTEL, 0x3a3e)
+#define HDA_INTEL_SCH HDA_MODEL_CONSTRUCT(INTEL, 0x811b)
#define HDA_INTEL_ALL HDA_MODEL_CONSTRUCT(INTEL, 0xffff)
/* Nvidia */
@@ -450,6 +452,8 @@ static const struct {
{ HDA_INTEL_82801G, "Intel 82801G" },
{ HDA_INTEL_82801H, "Intel 82801H" },
{ HDA_INTEL_82801I, "Intel 82801I" },
+ { HDA_INTEL_82801J, "Intel 82801J" },
+ { HDA_INTEL_SCH, "Intel SCH" },
{ HDA_NVIDIA_MCP51, "NVidia MCP51" },
{ HDA_NVIDIA_MCP55, "NVidia MCP55" },
{ HDA_NVIDIA_MCP61_1, "NVidia MCP61" },
More information about the svn-src-all
mailing list