diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-08-19 19:13:34 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-08-19 19:13:34 +0000 |
commit | 42a18c7dd4a2a12fdb94ffa07cd2ecbb66fa8f1e (patch) | |
tree | c8c5c80cb939a40dd1894a64aefd96b6883d0595 /sys/dev/pci/ichiic.c | |
parent | 5ded088c6d5d438fa0c4866b7635d2661c3bc8f5 (diff) |
add the Intel 82801H SMBus controller.
Diffstat (limited to 'sys/dev/pci/ichiic.c')
-rw-r--r-- | sys/dev/pci/ichiic.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/ichiic.c b/sys/dev/pci/ichiic.c index 5cf400bfa95..a882ec62d8f 100644 --- a/sys/dev/pci/ichiic.c +++ b/sys/dev/pci/ichiic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ichiic.c,v 1.15 2006/08/19 19:08:15 brad Exp $ */ +/* $OpenBSD: ichiic.c,v 1.16 2006/08/19 19:13:33 brad Exp $ */ /* * Copyright (c) 2005, 2006 Alexander Yurchenko <grange@openbsd.org> @@ -96,7 +96,8 @@ const struct pci_matchid ichiic_ids[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801E_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801EB_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801FB_SMB }, - { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801GB_SMB } + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801GB_SMB }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801H_SMB } }; int |