svn commit: r247120 - stable/9/sys/dev/sound/pci/hda
Alexander Motin
mav at FreeBSD.org
Thu Feb 21 19:40:48 UTC 2013
Author: mav
Date: Thu Feb 21 19:40:46 2013
New Revision: 247120
URL: http://svnweb.freebsd.org/changeset/base/247120
Log:
MFC r244980 (by jvf):
Add Intel Lynx Point PCH HD Audio Device IDs
Modified:
stable/9/sys/dev/sound/pci/hda/hdac.c
stable/9/sys/dev/sound/pci/hda/hdac.h
Directory Properties:
stable/9/sys/ (props changed)
stable/9/sys/dev/ (props changed)
Modified: stable/9/sys/dev/sound/pci/hda/hdac.c
==============================================================================
--- stable/9/sys/dev/sound/pci/hda/hdac.c Thu Feb 21 19:35:45 2013 (r247119)
+++ stable/9/sys/dev/sound/pci/hda/hdac.c Thu Feb 21 19:40:46 2013 (r247120)
@@ -81,6 +81,8 @@ static const struct {
{ HDA_INTEL_CPT, "Intel Cougar Point", 0, 0 },
{ HDA_INTEL_PATSBURG,"Intel Patsburg", 0, 0 },
{ HDA_INTEL_PPT1, "Intel Panther Point", 0, 0 },
+ { HDA_INTEL_LPT1, "Intel Lynx Point", 0, 0 },
+ { HDA_INTEL_LPT2, "Intel Lynx Point", 0, 0 },
{ HDA_INTEL_82801F, "Intel 82801F", 0, 0 },
{ HDA_INTEL_63XXESB, "Intel 631x/632xESB", 0, 0 },
{ HDA_INTEL_82801G, "Intel 82801G", 0, 0 },
Modified: stable/9/sys/dev/sound/pci/hda/hdac.h
==============================================================================
--- stable/9/sys/dev/sound/pci/hda/hdac.h Thu Feb 21 19:35:45 2013 (r247119)
+++ stable/9/sys/dev/sound/pci/hda/hdac.h Thu Feb 21 19:40:46 2013 (r247120)
@@ -54,6 +54,8 @@
#define HDA_INTEL_PCH HDA_MODEL_CONSTRUCT(INTEL, 0x3b56)
#define HDA_INTEL_PCH2 HDA_MODEL_CONSTRUCT(INTEL, 0x3b57)
#define HDA_INTEL_SCH HDA_MODEL_CONSTRUCT(INTEL, 0x811b)
+#define HDA_INTEL_LPT1 HDA_MODEL_CONSTRUCT(INTEL, 0x8c20)
+#define HDA_INTEL_LPT2 HDA_MODEL_CONSTRUCT(INTEL, 0x8c21)
#define HDA_INTEL_ALL HDA_MODEL_CONSTRUCT(INTEL, 0xffff)
/* Nvidia */
More information about the svn-src-stable-9
mailing list