svn commit: r324909 - stable/11/sys/dev/sound/pci/hda

Alexander Motin mav at FreeBSD.org
Mon Oct 23 07:41:45 UTC 2017


Author: mav
Date: Mon Oct 23 07:41:44 2017
New Revision: 324909
URL: https://svnweb.freebsd.org/changeset/base/324909

Log:
  MFC r324661: Add Creative vendor ID.

Modified:
  stable/11/sys/dev/sound/pci/hda/hdac.c
  stable/11/sys/dev/sound/pci/hda/hdac.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/sound/pci/hda/hdac.c
==============================================================================
--- stable/11/sys/dev/sound/pci/hda/hdac.c	Mon Oct 23 07:39:04 2017	(r324908)
+++ stable/11/sys/dev/sound/pci/hda/hdac.c	Mon Oct 23 07:41:44 2017	(r324909)
@@ -175,6 +175,7 @@ static const struct {
 	{ HDA_NVIDIA_ALL, "NVIDIA",		0, 0 },
 	{ HDA_ATI_ALL,    "ATI",		0, 0 },
 	{ HDA_AMD_ALL,    "AMD",		0, 0 },
+	{ HDA_CREATIVE_ALL,    "Creative",	0, 0 },
 	{ HDA_VIA_ALL,    "VIA",		0, 0 },
 	{ HDA_SIS_ALL,    "SiS",		0, 0 },
 	{ HDA_ULI_ALL,    "ULI",		0, 0 },

Modified: stable/11/sys/dev/sound/pci/hda/hdac.h
==============================================================================
--- stable/11/sys/dev/sound/pci/hda/hdac.h	Mon Oct 23 07:39:04 2017	(r324908)
+++ stable/11/sys/dev/sound/pci/hda/hdac.h	Mon Oct 23 07:41:44 2017	(r324909)
@@ -150,6 +150,10 @@
 #define RDC_VENDORID		0x17f3
 #define HDA_RDC_M3010		HDA_MODEL_CONSTRUCT(RDC, 0x3010)
 
+/* Creative */
+#define CREATIVE_VENDORID	0x1102
+#define HDA_CREATIVE_ALL	HDA_MODEL_CONSTRUCT(CREATIVE, 0xffff)
+
 /* VIA */
 #define VIA_VENDORID		0x1106
 #define HDA_VIA_VT82XX		HDA_MODEL_CONSTRUCT(VIA, 0x3288)


More information about the svn-src-stable mailing list