svn commit: r199705 - stable/8/sys/dev/sound/pci/hda
Alexander Motin
mav at FreeBSD.org
Mon Nov 23 09:21:35 UTC 2009
Author: mav
Date: Mon Nov 23 09:21:35 2009
New Revision: 199705
URL: http://svn.freebsd.org/changeset/base/199705
Log:
MFC r197017:
Add Intel 82801JD (one more ICH10) HDA controller ID.
Modified:
stable/8/sys/dev/sound/pci/hda/hdac.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/xen/xenpci/ (props changed)
Modified: stable/8/sys/dev/sound/pci/hda/hdac.c
==============================================================================
--- stable/8/sys/dev/sound/pci/hda/hdac.c Mon Nov 23 09:20:33 2009 (r199704)
+++ stable/8/sys/dev/sound/pci/hda/hdac.c Mon Nov 23 09:21:35 2009 (r199705)
@@ -146,7 +146,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_82801JI HDA_MODEL_CONSTRUCT(INTEL, 0x3a3e)
+#define HDA_INTEL_82801JD HDA_MODEL_CONSTRUCT(INTEL, 0x3a6e)
#define HDA_INTEL_PCH HDA_MODEL_CONSTRUCT(INTEL, 0x3b56)
#define HDA_INTEL_SCH HDA_MODEL_CONSTRUCT(INTEL, 0x811b)
#define HDA_INTEL_ALL HDA_MODEL_CONSTRUCT(INTEL, 0xffff)
@@ -486,7 +487,8 @@ static const struct {
{ HDA_INTEL_82801G, "Intel 82801G", 0 },
{ HDA_INTEL_82801H, "Intel 82801H", 0 },
{ HDA_INTEL_82801I, "Intel 82801I", 0 },
- { HDA_INTEL_82801J, "Intel 82801J", 0 },
+ { HDA_INTEL_82801JI, "Intel 82801JI", 0 },
+ { HDA_INTEL_82801JD, "Intel 82801JD", 0 },
{ HDA_INTEL_PCH, "Intel PCH", 0 },
{ HDA_INTEL_SCH, "Intel SCH", 0 },
{ HDA_NVIDIA_MCP51, "NVidia MCP51", HDAC_NO_MSI },
More information about the svn-src-stable
mailing list