diff options
-rw-r--r-- | share/man/man4/puc.4 | 5 | ||||
-rw-r--r-- | sys/dev/pci/pucdata.c | 10 |
2 files changed, 12 insertions, 3 deletions
diff --git a/share/man/man4/puc.4 b/share/man/man4/puc.4 index c0ac1c7e31a..88d70925438 100644 --- a/share/man/man4/puc.4 +++ b/share/man/man4/puc.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: puc.4,v 1.42 2011/03/05 16:01:57 jmc Exp $ +.\" $OpenBSD: puc.4,v 1.43 2011/03/22 03:56:07 mlarkin Exp $ .\" $NetBSD: puc.4,v 1.7 1999/07/03 05:55:23 cgd Exp $ .\" .\" Copyright (c) 1998 Christopher G. Demetriou. All rights reserved. @@ -29,7 +29,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: March 5 2011 $ +.Dd $Mdocdate: March 22 2011 $ .Dt PUC 4 .Os .Sh NAME @@ -87,6 +87,7 @@ The driver currently supports the following cards: .It Tn "NEC PK-UG-X001 K56flex PCI (modem)" .It Tn "NetMos 1P (1 port parallel)" .It Tn "NetMos 2S1P (2 port serial and 1 port parallel)" +.It Tn "NetMos 2S (2 port serial)" .It Tn "NetMos 4S (4 port serial)" .It Tn "NetMos 6S (6 port serial)" .It Tn "Oxford OX16PCI952 (2 port serial, 1 port parallel)" diff --git a/sys/dev/pci/pucdata.c b/sys/dev/pci/pucdata.c index f2b79db5d04..ef8373ea4ee 100644 --- a/sys/dev/pci/pucdata.c +++ b/sys/dev/pci/pucdata.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pucdata.c,v 1.72 2010/07/22 17:16:10 pirofti Exp $ */ +/* $OpenBSD: pucdata.c,v 1.73 2011/03/22 03:56:07 mlarkin Exp $ */ /* $NetBSD: pucdata.c,v 1.6 1999/07/03 05:55:23 cgd Exp $ */ /* @@ -1329,6 +1329,14 @@ const struct puc_device_description puc_devs[] = { }, }, + { /* NetMos NM9922: 2S */ + { PCI_VENDOR_NETMOS, PCI_PRODUCT_NETMOS_NM9922, 0xa000, 0x1000 }, + { 0xffff, 0xffff, 0xffff, 0xffff }, + { + { PUC_PORT_TYPE_COM, 0x10, 0x00, COM_FREQ }, + }, + }, + { /* Sunix 4018A : 2-port parallel */ { PCI_VENDOR_SUNIX, PCI_PRODUCT_SUNIX_4018A, 0, 0 }, { 0xffff, 0xffff, 0, 0 }, |