aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ichsmb
diff options
context:
space:
mode:
authorJack F Vogel <jfv@FreeBSD.org>2010-08-27 23:24:08 +0000
committerJack F Vogel <jfv@FreeBSD.org>2010-08-27 23:24:08 +0000
commitdce8a362dfbf2315872013c9ae6f1c3369d59bf3 (patch)
treefcf351eb7eb651d0bf2ba870b21c38756f2ff119 /sys/dev/ichsmb
parentc749353940a485fab91e92345ea2cf416eef750c (diff)
Notes
Diffstat (limited to 'sys/dev/ichsmb')
-rw-r--r--sys/dev/ichsmb/ichsmb_pci.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/ichsmb/ichsmb_pci.c b/sys/dev/ichsmb/ichsmb_pci.c
index 0843afe40cf9..c90b7059f0c2 100644
--- a/sys/dev/ichsmb/ichsmb_pci.c
+++ b/sys/dev/ichsmb/ichsmb_pci.c
@@ -81,6 +81,7 @@ __FBSDID("$FreeBSD$");
#define ID_PCH 0x3b308086
#define ID_6300ESB 0x25a48086
#define ID_631xESB 0x269b8086
+#define ID_CPT 0x1c228086
#define PCIS_SERIALBUS_SMBUS_PROGIF 0x00
@@ -174,6 +175,9 @@ ichsmb_pci_probe(device_t dev)
case ID_631xESB:
device_set_desc(dev, "Intel 631xESB/6321ESB (ESB2) SMBus controller");
break;
+ case ID_CPT:
+ device_set_desc(dev, "Intel Cougar Point SMBus controller");
+ break;
default:
return (ENXIO);
}