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

Rui Paulo rpaulo at FreeBSD.org
Mon Apr 6 06:02:59 UTC 2015


Author: rpaulo
Date: Mon Apr  6 06:02:58 2015
New Revision: 281136
URL: https://svnweb.freebsd.org/changeset/base/281136

Log:
  ichsmb: add a device id for the Wildcat Point-LP.
  
  MFC after:	1 week

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

Modified: head/sys/dev/ichsmb/ichsmb_pci.c
==============================================================================
--- head/sys/dev/ichsmb/ichsmb_pci.c	Mon Apr  6 03:21:22 2015	(r281135)
+++ head/sys/dev/ichsmb/ichsmb_pci.c	Mon Apr  6 06:02:58 2015	(r281136)
@@ -86,9 +86,10 @@ __FBSDID("$FreeBSD$");
 #define ID_CPT				0x1c228086
 #define ID_PPT				0x1e228086
 #define ID_AVOTON			0x1f3c8086
-#define ID_COLETOCRK			0x23B08086 
+#define ID_COLETOCRK			0x23B08086
 #define ID_LPT				0x8c228086
 #define ID_WCPT				0x8ca28086
+#define ID_WCPTLP			0x9ca28086
 
 #define PCIS_SERIALBUS_SMBUS_PROGIF	0x00
 
@@ -201,6 +202,9 @@ ichsmb_pci_probe(device_t dev)
 	case ID_WCPT:
 		device_set_desc(dev, "Intel Wildcat Point SMBus controller");
 		break;
+	case ID_WCPTLP:
+		device_set_desc(dev, "Intel Wildcat Point-LP SMBus controller");
+		break;
 	case ID_COLETOCRK:
 		device_set_desc(dev, "Intel Coleto Creek SMBus controller");
 		break;


More information about the svn-src-head mailing list