diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2007-10-17 22:03:48 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2007-10-17 22:03:48 +0000 |
commit | e414c9da63da73789e69dd2de52d8c42695155c2 (patch) | |
tree | 45bc8de841a96b199ecbc742ea8be57876c3c5f9 | |
parent | 68a21871fc778560a24c6550471847a8692d9daf (diff) |
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 |