diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2008-10-16 04:03:19 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2008-10-16 04:03:19 +0000 |
commit | a6839439c3c393efca52a51f924b0c6eeee5b63d (patch) | |
tree | 8311fa165cfe7cb15d1df30965ba6484318d2afc | |
parent | ef9b1a4e8db808ea5936e8fee8eebdcc03d64748 (diff) |
Add ICH10.
-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 b7696c729fe..91b83fba8b9 100644 --- a/share/man/man4/ichiic.4 +++ b/share/man/man4/ichiic.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ichiic.4,v 1.11 2007/10/17 22:03:47 brad Exp $ +.\" $OpenBSD: ichiic.4,v 1.12 2008/10/16 04:03:18 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: October 17 2007 $ +.Dd $Mdocdate: October 16 2008 $ .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, ICH9, C-ICH, 6300ESB and 6321ESB. +ICH8, ICH9, ICH10, 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 fe2547d526a..7748ac2537a 100644 --- a/sys/dev/pci/ichiic.c +++ b/sys/dev/pci/ichiic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ichiic.c,v 1.20 2008/04/20 20:51:58 deraadt Exp $ */ +/* $OpenBSD: ichiic.c,v 1.21 2008/10/16 04:03:18 brad Exp $ */ /* * Copyright (c) 2005, 2006 Alexander Yurchenko <grange@openbsd.org> @@ -98,7 +98,8 @@ const struct pci_matchid ichiic_ids[] = { { 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_82801I_SMB } + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801I_SMB }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801JI_SMB } }; int |