svn commit: r222597 - stable/8/sys/dev/sound/pci/hda

Alexander Motin mav at FreeBSD.org
Thu Jun 2 07:51:34 UTC 2011


Author: mav
Date: Thu Jun  2 07:51:33 2011
New Revision: 222597
URL: http://svn.freebsd.org/changeset/base/222597

Log:
  MFC r211910 (by jfv):
  Add Intel Cougar Point PCH HD Audio 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)

Modified: stable/8/sys/dev/sound/pci/hda/hdac.c
==============================================================================
--- stable/8/sys/dev/sound/pci/hda/hdac.c	Thu Jun  2 07:45:45 2011	(r222596)
+++ stable/8/sys/dev/sound/pci/hda/hdac.c	Thu Jun  2 07:51:33 2011	(r222597)
@@ -140,6 +140,7 @@ SND_DECLARE_FILE("$FreeBSD$");
 
 /* Intel */
 #define INTEL_VENDORID		0x8086
+#define HDA_INTEL_CPT		HDA_MODEL_CONSTRUCT(INTEL, 0x1c20)
 #define HDA_INTEL_PATSBURG	HDA_MODEL_CONSTRUCT(INTEL, 0x1d20)
 #define HDA_INTEL_PPT1		HDA_MODEL_CONSTRUCT(INTEL, 0x1e20)
 #define HDA_INTEL_82801F	HDA_MODEL_CONSTRUCT(INTEL, 0x2668)
@@ -493,6 +494,7 @@ static const struct {
 	char		*desc;
 	char		flags;
 } hdac_devices[] = {
+	{ HDA_INTEL_CPT,     "Intel Cougar Point",	0 },
 	{ HDA_INTEL_PATSBURG,"Intel Patsburg",  0 },
 	{ HDA_INTEL_PPT1,    "Intel Panther Point",	0 },
 	{ HDA_INTEL_82801F,  "Intel 82801F",	0 },


More information about the svn-src-stable-8 mailing list