diff options
-rw-r--r-- | share/man/man4/pci.4 | 4 | ||||
-rw-r--r-- | share/man/man4/viapm.4 | 6 | ||||
-rw-r--r-- | sys/dev/pci/viapm.c | 7 |
3 files changed, 10 insertions, 7 deletions
diff --git a/share/man/man4/pci.4 b/share/man/man4/pci.4 index f406e678cd3..dab8c3e599e 100644 --- a/share/man/man4/pci.4 +++ b/share/man/man4/pci.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pci.4,v 1.213 2007/04/27 05:36:47 jmc Exp $ +.\" $OpenBSD: pci.4,v 1.214 2007/04/29 05:40:20 jsg Exp $ .\" $NetBSD: pci.4,v 1.29 2000/04/01 00:32:23 tsarna Exp $ .\" .\" Copyright (c) 2000 Theo de Raadt. All rights reserved. @@ -418,7 +418,7 @@ SD Host Controller .It Xr uhci 4 USB Universal Host Controller Interface .It Xr viapm 4 -VIA VT8233/8235/8237 SMBus controller +VIA SMBus controller .El .Sh IOCTLS If the kernel is compiled with the diff --git a/share/man/man4/viapm.4 b/share/man/man4/viapm.4 index 138d5acdbf9..3d500e15efc 100644 --- a/share/man/man4/viapm.4 +++ b/share/man/man4/viapm.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: viapm.4,v 1.3 2006/09/07 10:42:25 jmc Exp $ +.\" $OpenBSD: viapm.4,v 1.4 2007/04/29 05:40:20 jsg Exp $ .\" .\" Copyright (c) 2006 Mark Kettenis <kettenis@openbsd.org> .\" @@ -19,7 +19,7 @@ .Os .Sh NAME .Nm viapm -.Nd VIA VT8233/8235/8237 SMBus controller +.Nd VIA SMBus controller .Sh SYNOPSIS .Cd "viapm* at pci?" .Cd "iic* at viapm?" @@ -27,7 +27,7 @@ The .Nm driver provides support for the bus control and power management -component of the VIA VT8233, VT8235 and VT8237 South Bridges. +component of the VIA VT8233, VT8235, VT8237, VT8251 and CX700 South Bridges. Only the SMBus host interface is supported and can be used with the .Xr iic 4 framework. diff --git a/sys/dev/pci/viapm.c b/sys/dev/pci/viapm.c index a3bfbde1050..86017084357 100644 --- a/sys/dev/pci/viapm.c +++ b/sys/dev/pci/viapm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: viapm.c,v 1.6 2006/12/11 18:16:37 deraadt Exp $ */ +/* $OpenBSD: viapm.c,v 1.7 2007/04/29 05:40:20 jsg Exp $ */ /* * Copyright (c) 2005 Mark Kettenis <kettenis@openbsd.org> @@ -128,7 +128,10 @@ const struct pci_matchid viapm_ids[] = { { PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8233_ISA }, { PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8233A_ISA }, { PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8235_ISA }, - { PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237_ISA } + { PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237_ISA }, + { PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8237A_ISA }, + { PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_VT8251_ISA }, + { PCI_VENDOR_VIATECH, PCI_PRODUCT_VIATECH_CX700_ISA } }; int |