diff options
author | 2007-10-17 22:03:47 +0000 | |
---|---|---|
committer | 2007-10-17 22:03:47 +0000 | |
commit | a2cd58f70cdf8cf2560e3faed78d7563397dc47d (patch) | |
tree | 7c099b19e0f7e425b7bbe6c8ff337fdbd8363bd2 | |
parent | miod says noone needs isa/isavar.h anymore, and i believe him (diff) | |
download | wireguard-openbsd-a2cd58f70cdf8cf2560e3faed78d7563397dc47d.tar.xz wireguard-openbsd-a2cd58f70cdf8cf2560e3faed78d7563397dc47d.zip |
Add the Intel ICH9 chipset.
Tested by damien@
ok dlg@
-rw-r--r-- | share/man/man4/ichiic.4 | 6 | ||||
-rw-r--r-- | sys/dev/pci/ichiic.c | 5 |
2 files changed, 6 insertions, 5 deletions
diff --git a/share/man/man4/ichiic.4 b/share/man/man4/ichiic.4 index bb5a2f5369b..b7696c729fe 100644 --- a/share/man/man4/ichiic.4 +++ b/share/man/man4/ichiic.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ichiic.4,v 1.10 2007/05/31 19:19:50 jmc Exp $ +.\" $OpenBSD: ichiic.4,v 1.11 2007/10/17 22:03:47 brad Exp $ .\" .\" Copyright (c) 2005 Alexander Yurchenko <grange@openbsd.org> .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: May 31 2007 $ +.Dd $Mdocdate: October 17 2007 $ .Dt ICHIIC 4 .Os .Sh NAME @@ -36,7 +36,7 @@ Supported chipsets: .Bl -bullet -compact -offset indent .It Intel ICH, ICH2, ICH3, ICH4, ICH4-M, ICH5, ICH5R, ICH6, ICH6-M, ICH6R, ICH7, -ICH8, C-ICH, 6300ESB and 6321ESB. +ICH8, ICH9, C-ICH, 6300ESB and 6321ESB. .El .Sh SEE ALSO .Xr iic 4 , diff --git a/sys/dev/pci/ichiic.c b/sys/dev/pci/ichiic.c index e823bc65a72..7f9f85cb019 100644 --- a/sys/dev/pci/ichiic.c +++ b/sys/dev/pci/ichiic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ichiic.c,v 1.18 2007/05/03 09:36:26 dlg Exp $ */ +/* $OpenBSD: ichiic.c,v 1.19 2007/10/17 22:03:47 brad Exp $ */ /* * Copyright (c) 2005, 2006 Alexander Yurchenko <grange@openbsd.org> @@ -97,7 +97,8 @@ const struct pci_matchid ichiic_ids[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801EB_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801FB_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801GB_SMB }, - { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801H_SMB } + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801H_SMB }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801I_SMB } }; int |