Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Dec 2010 17:45:44 +0000 (UTC)
From:      Pyun YongHyeon <yongari@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r216766 - head/sys/dev/sound/pci/hda
Message-ID:  <201012281745.oBSHji6m069018@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yongari
Date: Tue Dec 28 17:45:43 2010
New Revision: 216766
URL: http://svn.freebsd.org/changeset/base/216766

Log:
  Add device id for RDC M3010 which is found on Vortex86 SoC.
  
  Reviewed by:	mav

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	Tue Dec 28 17:02:15 2010	(r216765)
+++ head/sys/dev/sound/pci/hda/hdac.c	Tue Dec 28 17:45:43 2010	(r216766)
@@ -197,6 +197,10 @@ SND_DECLARE_FILE("$FreeBSD$");
 #define HDA_ATI_RV740		HDA_MODEL_CONSTRUCT(ATI, 0xaa48)
 #define HDA_ATI_ALL		HDA_MODEL_CONSTRUCT(ATI, 0xffff)
 
+/* RDC */
+#define RDC_VENDORID		0x17f3
+#define HDA_RDC_M3010		HDA_MODEL_CONSTRUCT(RDC, 0x3010)
+
 /* VIA */
 #define VIA_VENDORID		0x1106
 #define HDA_VIA_VT82XX		HDA_MODEL_CONSTRUCT(VIA, 0x3288)
@@ -533,6 +537,7 @@ static const struct {
 	{ HDA_ATI_RV730,     "ATI RV730",	0 },
 	{ HDA_ATI_RV740,     "ATI RV740",	0 },
 	{ HDA_ATI_RV770,     "ATI RV770",	0 },
+	{ HDA_RDC_M3010,     "RDC M3010",	0 },
 	{ HDA_VIA_VT82XX,    "VIA VT8251/8237A",0 },
 	{ HDA_SIS_966,       "SiS 966",		0 },
 	{ HDA_ULI_M5461,     "ULI M5461",	0 },



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201012281745.oBSHji6m069018>