diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2017-12-23 01:42:32 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2017-12-23 01:42:32 +0000 |
commit | 50de7a5e150e96b843010b4c69a903f47920e4f7 (patch) | |
tree | ff25e799cdb6d56501cc4c7a83afafb5fd4fb616 /sys/dev | |
parent | 317695557dd59ddb96fb8e2a788458eaccf5e5b9 (diff) |
match on intel 200 series
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 08d1d20a5e5..f1bb7907910 100644 --- a/sys/dev/pci/ichiic.c +++ b/sys/dev/pci/ichiic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ichiic.c,v 1.39 2016/04/24 06:50:58 jsg Exp $ */ +/* $OpenBSD: ichiic.c,v 1.40 2017/12/23 01:42:31 jsg Exp $ */ /* * Copyright (c) 2005, 2006 Alexander Yurchenko <grange@openbsd.org> @@ -121,7 +121,8 @@ const struct pci_matchid ichiic_ids[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_DH8900_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_EP80579_SMBUS }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_100SERIES_SMB }, - { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_100SERIES_LP_SMB } + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_100SERIES_LP_SMB }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_200SERIES_SMB } }; int |