svn commit: r296547 - stable/10/sys/dev/ichsmb
Eric van Gyzen
vangyzen at FreeBSD.org
Tue Mar 8 20:24:14 UTC 2016
Author: vangyzen
Date: Tue Mar 8 20:24:12 2016
New Revision: 296547
URL: https://svnweb.freebsd.org/changeset/base/296547
Log:
MFC r281920,r284247,r284248,r295651
ichsmb: Add PCI device IDs for Intel Sunrise Point-H,
Wellsburg, and Lynx-Point LP SMBus controllers.
Remove whitespace.
Sponsored by: Dell Inc.
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 Tue Mar 8 19:40:01 2016 (r296546)
+++ stable/10/sys/dev/ichsmb/ichsmb_pci.c Tue Mar 8 20:24:12 2016 (r296547)
@@ -5,7 +5,7 @@
* Copyright (c) 2000 Whistle Communications, Inc.
* All rights reserved.
* Author: Archie Cobbs <archie at freebsd.org>
- *
+ *
* Subject to the following obligations and disclaimer of warranty, use and
* redistribution of this software, in source or object code forms, with or
* without modifications are expressly permitted by Whistle Communications;
@@ -16,7 +16,7 @@
* Communications, Inc. trademarks, including the mark "WHISTLE
* COMMUNICATIONS" on advertising, endorsements, or otherwise except as
* such appears in the above copyright notice or in the software.
- *
+ *
* THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
* TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
* REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
@@ -88,8 +88,11 @@ __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
+#define ID_WELLSBURG 0x8d228086
+#define ID_SRPT 0xa1238086
#define PCIS_SERIALBUS_SMBUS_PROGIF 0x00
@@ -199,6 +202,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;
@@ -208,6 +214,12 @@ ichsmb_pci_probe(device_t dev)
case ID_COLETOCRK:
device_set_desc(dev, "Intel Coleto Creek SMBus controller");
break;
+ case ID_WELLSBURG:
+ device_set_desc(dev, "Intel Wellsburg SMBus controller");
+ break;
+ case ID_SRPT:
+ device_set_desc(dev, "Intel Sunrise Point-H SMBus controller");
+ break;
default:
return (ENXIO);
}
More information about the svn-src-stable
mailing list