svn commit: r258169 - head/sys/dev/ichsmb

Alexander Motin mav at FreeBSD.org
Fri Nov 15 13:19:15 UTC 2013


Author: mav
Date: Fri Nov 15 13:19:15 2013
New Revision: 258169
URL: http://svnweb.freebsd.org/changeset/base/258169

Log:
  Add ID for Intel Avoton SMBus controller.

Modified:
  head/sys/dev/ichsmb/ichsmb_pci.c

Modified: head/sys/dev/ichsmb/ichsmb_pci.c
==============================================================================
--- head/sys/dev/ichsmb/ichsmb_pci.c	Fri Nov 15 13:12:53 2013	(r258168)
+++ head/sys/dev/ichsmb/ichsmb_pci.c	Fri Nov 15 13:19:15 2013	(r258169)
@@ -85,6 +85,7 @@ __FBSDID("$FreeBSD$");
 #define ID_PATSBURG			0x1d228086
 #define ID_CPT				0x1c228086
 #define ID_PPT				0x1e228086
+#define ID_AVOTON			0x1f3c8086
 #define ID_COLETOCRK			0x23B08086 
 #define ID_LPT				0x8c228086
 
@@ -190,6 +191,9 @@ ichsmb_pci_probe(device_t dev)
 	case ID_PPT:
 		device_set_desc(dev, "Intel Panther Point SMBus controller");
 		break;
+	case ID_AVOTON:
+		device_set_desc(dev, "Intel Avoton SMBus controller");
+		break;
 	case ID_LPT:
 		device_set_desc(dev, "Intel Lynx Point SMBus controller");
 		break;


More information about the svn-src-head mailing list