Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Jun 2015 22:39:11 +0000 (UTC)
From:      Rui Paulo <rpaulo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r284248 - head/sys/dev/ichsmb
Message-ID:  <201506102239.t5AMdBNm017994@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rpaulo
Date: Wed Jun 10 22:39:10 2015
New Revision: 284248
URL: https://svnweb.freebsd.org/changeset/base/284248

Log:
  ichsmb: add Intel Wellsburg device ID.
  
  Submitted by:	Michael Allen <mallen pi-coral.com>
  MFC after:	1 week
  Sponsored by:	Pi-Coral, Inc.

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

Modified: head/sys/dev/ichsmb/ichsmb_pci.c
==============================================================================
--- head/sys/dev/ichsmb/ichsmb_pci.c	Wed Jun 10 22:37:09 2015	(r284247)
+++ head/sys/dev/ichsmb/ichsmb_pci.c	Wed Jun 10 22:39:10 2015	(r284248)
@@ -91,6 +91,7 @@ __FBSDID("$FreeBSD$");
 #define ID_LPTLP			0x9c228086
 #define ID_WCPT				0x8ca28086
 #define ID_WCPTLP			0x9ca28086
+#define	ID_WELLSBURG			0x8d228086
 
 #define PCIS_SERIALBUS_SMBUS_PROGIF	0x00
 
@@ -212,6 +213,9 @@ 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;
 	default:
 		return (ENXIO);
 	}



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