Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Jan 2011 23:23:05 +0000 (UTC)
From:      Pyun YongHyeon <yongari@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r218111 - stable/8/sys/dev/sound/pci/hda
Message-ID:  <201101302323.p0UNN5aG089259@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yongari
Date: Sun Jan 30 23:23:05 2011
New Revision: 218111
URL: http://svn.freebsd.org/changeset/base/218111

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

Modified:
  stable/8/sys/dev/sound/pci/hda/hdac.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/dev/sound/pci/hda/hdac.c
==============================================================================
--- stable/8/sys/dev/sound/pci/hda/hdac.c	Sun Jan 30 23:18:55 2011	(r218110)
+++ stable/8/sys/dev/sound/pci/hda/hdac.c	Sun Jan 30 23:23:05 2011	(r218111)
@@ -196,6 +196,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)
@@ -531,6 +535,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?201101302323.p0UNN5aG089259>