diff options
| author | Nate Lawson <njl@FreeBSD.org> | 2003-08-31 01:28:02 +0000 |
|---|---|---|
| committer | Nate Lawson <njl@FreeBSD.org> | 2003-08-31 01:28:02 +0000 |
| commit | 58f946c5f50fac7b1ec26d5f857454c5e9eaebb4 (patch) | |
| tree | a7684ba7c6ed420869ef6b3883fe4eafcc40ecf5 /sys/dev/ichsmb | |
| parent | a7db5590877b425f276a844e0aca9b15724aeed3 (diff) | |
Notes
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 d5c3cea94d520..fa672dfcf91fa 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 |
