PERFORCE change 112800 for review

John Baldwin jhb at FreeBSD.org
Thu Jan 11 13:48:51 PST 2007


http://perforce.freebsd.org/chv.cgi?CH=112800

Change 112800 by jhb at jhb_mutex on 2007/01/11 21:48:40

	IFC @112798.

Affected files ...

.. //depot/projects/smpng/sys/dev/ichsmb/ichsmb_pci.c#14 integrate

Differences ...

==== //depot/projects/smpng/sys/dev/ichsmb/ichsmb_pci.c#14 (text+ko) ====

@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__FBSDID("$FreeBSD: src/sys/dev/ichsmb/ichsmb_pci.c,v 1.18 2007/01/11 19:56:24 jhb Exp $");
+__FBSDID("$FreeBSD: src/sys/dev/ichsmb/ichsmb_pci.c,v 1.19 2007/01/11 21:13:27 jhb Exp $");
 
 /*
  * Support for the SMBus controller logical device which is part of the
@@ -74,6 +74,7 @@
 #define ID_82801DC			0x24C38086
 #define ID_82801EB			0x24D38086
 #define ID_6300ESB			0x25a48086
+#define	ID_631xESB			0x269b8086
 
 #define PCIS_SERIALBUS_SMBUS_PROGIF	0x00
 
@@ -146,6 +147,9 @@
 	case ID_6300ESB:
 		device_set_desc(dev, "Intel 6300ESB (ICH) SMBus controller");
 		break;
+	case ID_631xESB:
+		device_set_desc(dev, "Intel 631xESB/6321ESB (ESB2) SMBus controller");
+		break;
 	default:
 		if (pci_get_class(dev) == PCIC_SERIALBUS
 		    && pci_get_subclass(dev) == PCIS_SERIALBUS_SMBUS


More information about the p4-projects mailing list