diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-09-23 13:29:31 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-09-23 13:29:31 +0000 |
commit | 99e947d0556b9a041ed3b9c81eaddd18d8f62d83 (patch) | |
tree | 16e53e593d90f3eb3833ef5b7a753fc80c2a8a29 /sys | |
parent | af29919928099daf951d38de5e1cdfb33864b26b (diff) |
add Bay Trail and Braswell SMBus
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/ichiic.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/ichiic.c b/sys/dev/pci/ichiic.c index 7d412ddbba5..d53fa4b0f7a 100644 --- a/sys/dev/pci/ichiic.c +++ b/sys/dev/pci/ichiic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ichiic.c,v 1.34 2014/08/13 07:45:37 jsg Exp $ */ +/* $OpenBSD: ichiic.c,v 1.35 2014/09/23 13:29:30 jsg Exp $ */ /* * Copyright (c) 2005, 2006 Alexander Yurchenko <grange@openbsd.org> @@ -108,6 +108,8 @@ const struct pci_matchid ichiic_ids[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801JD_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801JI_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_ATOMC2000_PCU_SMB }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_BAYTRAIL_SMB }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_BRASWELL_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_C600_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_C600_SMB_IDF_1 }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_C600_SMB_IDF_2 }, |