diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-12-07 02:56:37 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-12-07 02:56:37 +0000 |
commit | e6ffe06e6c1ed35efaf762e6f96261736ae13e0b (patch) | |
tree | 923dcaf1631f9ea33f4eab59ae19a41ed1267428 /sys/dev | |
parent | a89dfcc63c1861093d1deb834aabd4dc4cb5df3a (diff) |
match on intel 100 series
from and tested by daniel@
Diffstat (limited to 'sys/dev')
-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 7cf41e10b51..87b9f0afcc9 100644 --- a/sys/dev/pci/ichiic.c +++ b/sys/dev/pci/ichiic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ichiic.c,v 1.36 2015/01/09 07:29:45 jsg Exp $ */ +/* $OpenBSD: ichiic.c,v 1.37 2015/12/07 02:56:36 jsg Exp $ */ /* * Copyright (c) 2005, 2006 Alexander Yurchenko <grange@openbsd.org> @@ -119,7 +119,8 @@ const struct pci_matchid ichiic_ids[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_C610_MS_SMB_2 }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_C610_MS_SMB_3 }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_DH8900_SMB }, - { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_EP80579_SMBUS } + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_EP80579_SMBUS }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_100SERIES_SMB } }; int |