Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 24 Apr 2015 07:24:32 +0000 (UTC)
From:      Takanori Watanabe <takawata@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r281920 - head/sys/dev/ichsmb
Message-ID:  <201504240724.t3O7OWHf006954@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504240724.t3O7OWHf006954>