svn commit: r184141 - head/sys/dev/pci

Alexander Motin mav at FreeBSD.org
Tue Oct 21 21:53:56 UTC 2008


Author: mav
Date: Tue Oct 21 21:53:55 2008
New Revision: 184141
URL: http://svn.freebsd.org/changeset/base/184141

Log:
  Add HDA multimedia subclass.

Modified:
  head/sys/dev/pci/pci.c
  head/sys/dev/pci/pcireg.h

Modified: head/sys/dev/pci/pci.c
==============================================================================
--- head/sys/dev/pci/pci.c	Tue Oct 21 20:57:21 2008	(r184140)
+++ head/sys/dev/pci/pci.c	Tue Oct 21 21:53:55 2008	(r184141)
@@ -2963,6 +2963,7 @@ static struct
 	{PCIC_MULTIMEDIA,	PCIS_MULTIMEDIA_VIDEO,	"video"},
 	{PCIC_MULTIMEDIA,	PCIS_MULTIMEDIA_AUDIO,	"audio"},
 	{PCIC_MULTIMEDIA,	PCIS_MULTIMEDIA_TELE,	"telephony"},
+	{PCIC_MULTIMEDIA,	PCIS_MULTIMEDIA_HDA,	"HDA"},
 	{PCIC_MEMORY,		-1,			"memory"},
 	{PCIC_MEMORY,		PCIS_MEMORY_RAM,	"RAM"},
 	{PCIC_MEMORY,		PCIS_MEMORY_FLASH,	"flash"},

Modified: head/sys/dev/pci/pcireg.h
==============================================================================
--- head/sys/dev/pci/pcireg.h	Tue Oct 21 20:57:21 2008	(r184140)
+++ head/sys/dev/pci/pcireg.h	Tue Oct 21 21:53:55 2008	(r184141)
@@ -255,6 +255,7 @@
 #define	PCIS_MULTIMEDIA_VIDEO	0x00
 #define	PCIS_MULTIMEDIA_AUDIO	0x01
 #define	PCIS_MULTIMEDIA_TELE	0x02
+#define	PCIS_MULTIMEDIA_HDA	0x03
 #define	PCIS_MULTIMEDIA_OTHER	0x80
 
 #define	PCIC_MEMORY	0x05


More information about the svn-src-head mailing list