svn commit: r275440 - stable/9/sys/dev/sound/pci/hda
Alexander Motin
mav at FreeBSD.org
Wed Dec 3 06:59:02 UTC 2014
Author: mav
Date: Wed Dec 3 06:59:00 2014
New Revision: 275440
URL: https://svnweb.freebsd.org/changeset/base/275440
Log:
MFC r258168: Add ID for Intel Lynx Point HDMI CODEC.
Modified:
stable/9/sys/dev/sound/pci/hda/hdac.h
stable/9/sys/dev/sound/pci/hda/hdacc.c
Directory Properties:
stable/9/ (props changed)
stable/9/sys/ (props changed)
stable/9/sys/dev/ (props changed)
Modified: stable/9/sys/dev/sound/pci/hda/hdac.h
==============================================================================
--- stable/9/sys/dev/sound/pci/hda/hdac.h Wed Dec 3 06:53:49 2014 (r275439)
+++ stable/9/sys/dev/sound/pci/hda/hdac.h Wed Dec 3 06:59:00 2014 (r275440)
@@ -610,6 +610,7 @@
#define HDA_CODEC_INTELIP2 HDA_CODEC_CONSTRUCT(INTEL, 0x2804)
#define HDA_CODEC_INTELCPT HDA_CODEC_CONSTRUCT(INTEL, 0x2805)
#define HDA_CODEC_INTELPPT HDA_CODEC_CONSTRUCT(INTEL, 0x2806)
+#define HDA_CODEC_INTELLP HDA_CODEC_CONSTRUCT(INTEL, 0x2807)
#define HDA_CODEC_INTELCL HDA_CODEC_CONSTRUCT(INTEL, 0x29fb)
#define HDA_CODEC_INTELXXXX HDA_CODEC_CONSTRUCT(INTEL, 0xffff)
Modified: stable/9/sys/dev/sound/pci/hda/hdacc.c
==============================================================================
--- stable/9/sys/dev/sound/pci/hda/hdacc.c Wed Dec 3 06:53:49 2014 (r275439)
+++ stable/9/sys/dev/sound/pci/hda/hdacc.c Wed Dec 3 06:59:00 2014 (r275440)
@@ -318,6 +318,7 @@ static const struct {
{ HDA_CODEC_INTELIP2, 0, "Intel Ibex Peak" },
{ HDA_CODEC_INTELCPT, 0, "Intel Cougar Point" },
{ HDA_CODEC_INTELPPT, 0, "Intel Panther Point" },
+ { HDA_CODEC_INTELLP, 0, "Intel Lynx Point" },
{ HDA_CODEC_INTELCL, 0, "Intel Crestline" },
{ HDA_CODEC_SII1390, 0, "Silicon Image SiI1390" },
{ HDA_CODEC_SII1392, 0, "Silicon Image SiI1392" },
More information about the svn-src-stable-9
mailing list