svn commit: r260352 - stable/10/sys/dev/ichsmb
Alexander Motin
mav at FreeBSD.org
Sun Jan 5 22:53:56 UTC 2014
Author: mav
Date: Sun Jan 5 22:53:55 2014
New Revision: 260352
URL: http://svnweb.freebsd.org/changeset/base/260352
Log:
MFC r258169:
Add ID for Intel Avoton SMBus controller.
Modified:
stable/10/sys/dev/ichsmb/ichsmb_pci.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/dev/ichsmb/ichsmb_pci.c
==============================================================================
--- stable/10/sys/dev/ichsmb/ichsmb_pci.c Sun Jan 5 22:52:59 2014 (r260351)
+++ stable/10/sys/dev/ichsmb/ichsmb_pci.c Sun Jan 5 22:53:55 2014 (r260352)
@@ -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-stable-10
mailing list