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

Takanori Watanabe takawata at FreeBSD.org
Fri Apr 24 07:24:32 UTC 2015


Author: takawata
Date: Fri Apr 24 07:24:31 2015
New Revision: 281920
URL: https://svnweb.freebsd.org/changeset/base/281920

Log:
  Add Lynx-Point LP smbus controller ID.

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

Modified: head/sys/dev/ichsmb/ichsmb_pci.c
==============================================================================
--- head/sys/dev/ichsmb/ichsmb_pci.c	Fri Apr 24 05:00:57 2015	(r281919)
+++ head/sys/dev/ichsmb/ichsmb_pci.c	Fri Apr 24 07:24:31 2015	(r281920)
@@ -88,6 +88,7 @@ __FBSDID("$FreeBSD$");
 #define ID_AVOTON			0x1f3c8086
 #define ID_COLETOCRK			0x23B08086
 #define ID_LPT				0x8c228086
+#define ID_LPTLP			0x9c228086
 #define ID_WCPT				0x8ca28086
 #define ID_WCPTLP			0x9ca28086
 
@@ -199,6 +200,9 @@ ichsmb_pci_probe(device_t dev)
 	case ID_LPT:
 		device_set_desc(dev, "Intel Lynx Point SMBus controller");
 		break;
+	case ID_LPTLP:
+		device_set_desc(dev, "Intel Lynx Point-LP SMBus controller");
+		break;
 	case ID_WCPT:
 		device_set_desc(dev, "Intel Wildcat Point SMBus controller");
 		break;


More information about the svn-src-head mailing list