diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2012-05-23 15:36:27 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2012-05-23 15:36:27 +0000 |
commit | feaa3dda9c0cb5086f37f88493885cfa7b46030e (patch) | |
tree | 5d3a82dfc62857502ab0093e9568b3e637a0a069 /sys/dev | |
parent | fdc55ad4d1b497d619afcc482128076d88463375 (diff) |
add C600 SMBus
ok dlg@ tested by and ok mikeb@
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 882029ceeaf..a0a2f7ad900 100644 --- a/sys/dev/pci/ichiic.c +++ b/sys/dev/pci/ichiic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ichiic.c,v 1.26 2011/04/21 21:56:53 jsg Exp $ */ +/* $OpenBSD: ichiic.c,v 1.27 2012/05/23 15:36:26 jsg Exp $ */ /* * Copyright (c) 2005, 2006 Alexander Yurchenko <grange@openbsd.org> @@ -101,7 +101,8 @@ const struct pci_matchid ichiic_ids[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801H_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801I_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801JD_SMB }, - { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801JI_SMB } + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801JI_SMB }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_C600_SMB } }; int |