From 492da65ed7cf182fa0f8b324a307d3cc85a9a2a9 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Wed, 8 May 2002 00:51:54 +0000 Subject: [PATCH] Detect and attach to the ICH3 SMBus controller. PR: i386/36972 Submitted by: Colin Perkins Requested by: Larry Rosenman MFC After: 7 days --- sys/dev/ichsmb/ichsmb_pci.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/dev/ichsmb/ichsmb_pci.c b/sys/dev/ichsmb/ichsmb_pci.c index cc39b8ce372..c3719c164be 100644 --- a/sys/dev/ichsmb/ichsmb_pci.c +++ b/sys/dev/ichsmb/ichsmb_pci.c @@ -69,6 +69,7 @@ #define ID_81801AA 0x24138086 #define ID_81801AB 0x24238086 #define ID_82801BA 0x24438086 +#define ID_82801CA 0x24838086 #define PCIS_SERIALBUS_SMBUS_PROGIF 0x00 @@ -124,6 +125,9 @@ ichsmb_pci_probe(device_t dev) case ID_82801BA: device_set_desc(dev, "Intel 82801BA (ICH2) SMBus controller"); break; + case ID_82801CA: + device_set_desc(dev, "Intel 82801CA (ICH3) SMBus controller"); + break; default: if (pci_get_class(dev) == PCIC_SERIALBUS && pci_get_subclass(dev) == PCIS_SERIALBUS_SMBUS