svn commit: r200717 - stable/7/sys/dev/ichsmb

Andriy Gapon avg at FreeBSD.org
Sat Dec 19 10:55:42 UTC 2009


Author: avg
Date: Sat Dec 19 10:55:41 2009
New Revision: 200717
URL: http://svn.freebsd.org/changeset/base/200717

Log:
  MFC r200602: ichsmb: add another pci id

Modified:
  stable/7/sys/dev/ichsmb/ichsmb_pci.c
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/dev/ichsmb/ichsmb_pci.c
==============================================================================
--- stable/7/sys/dev/ichsmb/ichsmb_pci.c	Sat Dec 19 10:54:29 2009	(r200716)
+++ stable/7/sys/dev/ichsmb/ichsmb_pci.c	Sat Dec 19 10:55:41 2009	(r200717)
@@ -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-stable mailing list