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

Andriy Gapon avg at FreeBSD.org
Wed Dec 16 04:25:27 PST 2009


Author: avg
Date: Wed Dec 16 12:25:27 2009
New Revision: 200602
URL: http://svn.freebsd.org/changeset/base/200602

Log:
  ichsmb: add another pci id
  
  This is SMBus controller found in Intel Platform Controller Hub (PCH),
  which is a general name that refers to Intel 5 Series chipsets and
  3400 Series chipsets.
  
  Submitted by:	Dmitry S. Luhtionov <mitya at cabletv.dp.ua>
  MFC after:	3 days

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

Modified: head/sys/dev/ichsmb/ichsmb_pci.c
==============================================================================
--- head/sys/dev/ichsmb/ichsmb_pci.c	Wed Dec 16 10:48:40 2009	(r200601)
+++ head/sys/dev/ichsmb/ichsmb_pci.c	Wed Dec 16 12:25:27 2009	(r200602)
@@ -78,6 +78,7 @@ __FBSDID("$FreeBSD$");
 #define ID_82801H			0x283e8086
 #define ID_82801I			0x29308086
 #define ID_82801JI			0x3a308086
+#define ID_PCH				0x3b308086
 #define ID_6300ESB			0x25a48086
 #define	ID_631xESB			0x269b8086
 
@@ -164,6 +165,9 @@ ichsmb_pci_probe(device_t dev)
 	case ID_82801JI:
 		device_set_desc(dev, "Intel 82801JI (ICH10) SMBus controller");
 		break;
+	case ID_PCH:
+		device_set_desc(dev, "Intel PCH SMBus controller");
+		break;
 	case ID_6300ESB:
 		device_set_desc(dev, "Intel 6300ESB (ICH) SMBus controller");
 		break;


More information about the svn-src-all mailing list