From 234093730d93718d0bf481f2eb55741b070ca69a Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Thu, 11 Jan 2007 21:13:27 +0000 Subject: [PATCH] Add a device ID for the 631xESB/6321ESB SMBus controller. Submitted by: Reed A. Cartwright --- 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 336c01c4551..930ae7c6813 100644 --- a/sys/dev/ichsmb/ichsmb_pci.c +++ b/sys/dev/ichsmb/ichsmb_pci.c @@ -74,6 +74,7 @@ __FBSDID("$FreeBSD$"); #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 @@ ichsmb_pci_probe(device_t dev) 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