svn commit: r211910 - head/sys/dev/sound/pci/hda

Jack F Vogel jfv at FreeBSD.org
Sat Aug 28 00:23:13 UTC 2010


Author: jfv
Date: Sat Aug 28 00:23:13 2010
New Revision: 211910
URL: http://svn.freebsd.org/changeset/base/211910

Log:
  Add Intel Cougar Point PCH HD Audio Controller ID
  
  MFC in a week

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	Sat Aug 28 00:16:49 2010	(r211909)
+++ head/sys/dev/sound/pci/hda/hdac.c	Sat Aug 28 00:23:13 2010	(r211910)
@@ -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_82801F	HDA_MODEL_CONSTRUCT(INTEL, 0x2668)
 #define HDA_INTEL_63XXESB	HDA_MODEL_CONSTRUCT(INTEL, 0x269a)
 #define HDA_INTEL_82801G	HDA_MODEL_CONSTRUCT(INTEL, 0x27d8)
@@ -486,6 +487,7 @@ static const struct {
 	char		*desc;
 	char		flags;
 } hdac_devices[] = {
+	{ HDA_INTEL_CPT,     "Intel Cougar Point",	0 },
 	{ HDA_INTEL_82801F,  "Intel 82801F",	0 },
 	{ HDA_INTEL_63XXESB, "Intel 631x/632xESB",	0 },
 	{ HDA_INTEL_82801G,  "Intel 82801G",	0 },


More information about the svn-src-all mailing list