svn commit: r200715 - stable/8/sys/dev/ichsmb
Andriy Gapon
avg at FreeBSD.org
Sat Dec 19 10:52:32 UTC 2009
Author: avg
Date: Sat Dec 19 10:52:32 2009
New Revision: 200715
URL: http://svn.freebsd.org/changeset/base/200715
Log:
MFC r200602: ichsmb: add another pci id
Modified:
stable/8/sys/dev/ichsmb/ichsmb_pci.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/xen/xenpci/ (props changed)
Modified: stable/8/sys/dev/ichsmb/ichsmb_pci.c
==============================================================================
--- stable/8/sys/dev/ichsmb/ichsmb_pci.c Sat Dec 19 10:45:57 2009 (r200714)
+++ stable/8/sys/dev/ichsmb/ichsmb_pci.c Sat Dec 19 10:52:32 2009 (r200715)
@@ -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