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

Eric van Gyzen vangyzen at FreeBSD.org
Tue Feb 16 02:23:41 UTC 2016


Author: vangyzen
Date: Tue Feb 16 02:23:39 2016
New Revision: 295651
URL: https://svnweb.freebsd.org/changeset/base/295651

Log:
  ichsmb: add PCI device ID for Intel Sunrise Point-H SMBus controller
  
  MFC after:	3 days
  Sponsored by:	Dell Inc.

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

Modified: head/sys/dev/ichsmb/ichsmb_pci.c
==============================================================================
--- head/sys/dev/ichsmb/ichsmb_pci.c	Tue Feb 16 02:14:30 2016	(r295650)
+++ head/sys/dev/ichsmb/ichsmb_pci.c	Tue Feb 16 02:23:39 2016	(r295651)
@@ -92,6 +92,7 @@ __FBSDID("$FreeBSD$");
 #define ID_WCPT				0x8ca28086
 #define ID_WCPTLP			0x9ca28086
 #define	ID_WELLSBURG			0x8d228086
+#define	ID_SRPT				0xa1238086
 
 #define PCIS_SERIALBUS_SMBUS_PROGIF	0x00
 
@@ -216,6 +217,9 @@ ichsmb_pci_probe(device_t dev)
 	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-head mailing list