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

Jack F Vogel jfv at FreeBSD.org
Wed Jan 2 22:01:27 UTC 2013


Author: jfv
Date: Wed Jan  2 22:01:26 2013
New Revision: 244981
URL: http://svnweb.freebsd.org/changeset/base/244981

Log:
  Add Intel Lynx Point PCH SMBus Device IDs

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

Modified: head/sys/dev/ichsmb/ichsmb_pci.c
==============================================================================
--- head/sys/dev/ichsmb/ichsmb_pci.c	Wed Jan  2 21:56:58 2013	(r244980)
+++ head/sys/dev/ichsmb/ichsmb_pci.c	Wed Jan  2 22:01:26 2013	(r244981)
@@ -85,6 +85,7 @@ __FBSDID("$FreeBSD$");
 #define ID_PATSBURG			0x1d228086
 #define ID_CPT				0x1c228086
 #define ID_PPT				0x1e228086
+#define ID_LPT				0x8c228086
 
 #define PCIS_SERIALBUS_SMBUS_PROGIF	0x00
 
@@ -188,6 +189,9 @@ ichsmb_pci_probe(device_t dev)
 	case ID_PPT:
 		device_set_desc(dev, "Intel Panther Point SMBus controller");
 		break;
+	case ID_LPT:
+		device_set_desc(dev, "Intel Lynx Point SMBus controller");
+		break;
 	default:
 		return (ENXIO);
 	}


More information about the svn-src-all mailing list