diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2011-04-21 21:56:54 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2011-04-21 21:56:54 +0000 |
commit | b5f5ddb7bdb675fe96d1606f0460e8b9b797762b (patch) | |
tree | 103278602fbf7ab4693b5daee395017fc2f69610 /sys/dev/pci | |
parent | 3045c0719e4d32954385a98465f7df966a536c20 (diff) |
match on 6 series smbus, tested by Laurence Tratt
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/ichiic.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/ichiic.c b/sys/dev/pci/ichiic.c index c81d210e588..882029ceeaf 100644 --- a/sys/dev/pci/ichiic.c +++ b/sys/dev/pci/ichiic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ichiic.c,v 1.25 2011/04/09 04:33:40 deraadt Exp $ */ +/* $OpenBSD: ichiic.c,v 1.26 2011/04/21 21:56:53 jsg Exp $ */ /* * Copyright (c) 2005, 2006 Alexander Yurchenko <grange@openbsd.org> @@ -86,6 +86,7 @@ struct cfdriver ichiic_cd = { const struct pci_matchid ichiic_ids[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_3400_SMB }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_6SERIES_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_6300ESB_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_6321ESB_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801AA_SMB }, |