aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorAlexander Motin <mav@FreeBSD.org>2017-10-16 12:54:53 +0000
committerAlexander Motin <mav@FreeBSD.org>2017-10-16 12:54:53 +0000
commiteeec68eae7944e7ed80633b7fcaa4b5676d0b67e (patch)
tree506f8681bd3a3e7bb0f31540d00584ec013e19ba /sys
parenta86d7982105eac5572e6dcd9d7bd1a0b124d3c71 (diff)
downloadsrc-eeec68eae7944e7ed80633b7fcaa4b5676d0b67e.tar.gz
src-eeec68eae7944e7ed80633b7fcaa4b5676d0b67e.zip
Add Creative vendor ID.
MFC after: 1 week
Notes
Notes: svn path=/head/; revision=324661
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/sound/pci/hda/hdac.c1
-rw-r--r--sys/dev/sound/pci/hda/hdac.h4
2 files changed, 5 insertions, 0 deletions
diff --git a/sys/dev/sound/pci/hda/hdac.c b/sys/dev/sound/pci/hda/hdac.c
index 4726edd78410..a41e44831253 100644
--- a/sys/dev/sound/pci/hda/hdac.c
+++ b/sys/dev/sound/pci/hda/hdac.c
@@ -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 },
diff --git a/sys/dev/sound/pci/hda/hdac.h b/sys/dev/sound/pci/hda/hdac.h
index d20501a72024..0adc6ddce85f 100644
--- a/sys/dev/sound/pci/hda/hdac.h
+++ b/sys/dev/sound/pci/hda/hdac.h
@@ -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)