Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 16 Feb 2016 02:23:40 +0000 (UTC)
From:      Eric van Gyzen <vangyzen@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r295651 - head/sys/dev/ichsmb
Message-ID:  <201602160223.u1G2Nehc014244@repo.freebsd.org>

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



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