diff options
author | njl <njl@FreeBSD.org> | 2003-08-31 01:28:02 +0000 |
---|---|---|
committer | njl <njl@FreeBSD.org> | 2003-08-31 01:28:02 +0000 |
commit | b1cfa5d0032bc758a5c3ef3a003844aa5af16998 (patch) | |
tree | a7684ba7c6ed420869ef6b3883fe4eafcc40ecf5 /sys/dev/ichsmb | |
parent | 5e7832253ca81f9f06343b7f57072c2e25123284 (diff) | |
download | FreeBSD-src-b1cfa5d0032bc758a5c3ef3a003844aa5af16998.zip FreeBSD-src-b1cfa5d0032bc758a5c3ef3a003844aa5af16998.tar.gz |
Add support for the 82801EB (ICH5) SMBus controller.
PR: kern/55485
Submitted by: Shin-ichi Yoshimoto <yosimoto@waishi.jp>
MFC after: 1 day
Diffstat (limited to 'sys/dev/ichsmb')
-rw-r--r-- | sys/dev/ichsmb/ichsmb_pci.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/ichsmb/ichsmb_pci.c b/sys/dev/ichsmb/ichsmb_pci.c index d5c3cea..fa672df 100644 --- a/sys/dev/ichsmb/ichsmb_pci.c +++ b/sys/dev/ichsmb/ichsmb_pci.c @@ -71,6 +71,7 @@ __FBSDID("$FreeBSD$"); #define ID_82801BA 0x24438086 #define ID_82801CA 0x24838086 #define ID_82801DC 0x24C38086 +#define ID_82801EB 0x24D38086 #define PCIS_SERIALBUS_SMBUS_PROGIF 0x00 @@ -132,6 +133,9 @@ ichsmb_pci_probe(device_t dev) case ID_82801DC: device_set_desc(dev, "Intel 82801DC (ICH4) SMBus controller"); break; + case ID_82801EB: + device_set_desc(dev, "Intel 82801EB (ICH5) SMBus controller"); + break; default: if (pci_get_class(dev) == PCIC_SERIALBUS && pci_get_subclass(dev) == PCIS_SERIALBUS_SMBUS |