diff options
author | 2012-03-15 14:21:50 +0000 | |
---|---|---|
committer | 2012-03-15 14:21:50 +0000 | |
commit | 795f6485cf3154b20865ababd586437c4d702790 (patch) | |
tree | b3c3cb49aef004ddd0970b286514cdbe7a082b6a | |
parent | Direct IPv6 packets with Ethernet encapsulation into the appropriate (diff) | |
download | wireguard-openbsd-795f6485cf3154b20865ababd586437c4d702790.tar.xz wireguard-openbsd-795f6485cf3154b20865ababd586437c4d702790.zip |
Let nviic(4) match the NVIDIA MCP89 chipset, from Brad.
-rw-r--r-- | share/man/man4/nviic.4 | 6 | ||||
-rw-r--r-- | sys/dev/pci/nviic.c | 5 |
2 files changed, 6 insertions, 5 deletions
diff --git a/share/man/man4/nviic.4 b/share/man/man4/nviic.4 index d51999abb7d..08182870434 100644 --- a/share/man/man4/nviic.4 +++ b/share/man/man4/nviic.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: nviic.4,v 1.11 2009/06/18 08:21:20 jsg Exp $ +.\" $OpenBSD: nviic.4,v 1.12 2012/03/15 14:21:50 sthen Exp $ .\" .\" Copyright (c) 2005 David Gwynne <dlg@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: June 18 2009 $ +.Dd $Mdocdate: March 15 2012 $ .Dt NVIIC 4 .Os .Sh NAME @@ -27,7 +27,7 @@ The .Nm driver provides support for the NVIDIA nForce2/3/4 -and MCP51/55/61/65/67/73/77/79 SMBus +and MCP51/55/61/65/67/73/77/79/89 SMBus host interface to be used with the .Xr iic 4 framework. diff --git a/sys/dev/pci/nviic.c b/sys/dev/pci/nviic.c index 9386bb5e42d..85af148be85 100644 --- a/sys/dev/pci/nviic.c +++ b/sys/dev/pci/nviic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nviic.c,v 1.15 2010/04/08 00:23:53 tedu Exp $ */ +/* $OpenBSD: nviic.c,v 1.16 2012/03/15 14:21:50 sthen Exp $ */ /* * Copyright (c) 2005 David Gwynne <dlg@openbsd.org> @@ -125,7 +125,8 @@ const struct pci_matchid nviic_ids[] = { { PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_SMB }, { PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP73_SMB }, { PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP77_SMB }, - { PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_SMB } + { PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP79_SMB }, + { PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP89_SMB } }; int |