diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2019-05-11 15:47:59 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2019-05-11 15:47:59 +0000 |
commit | 9fa2fa12d357f31f799b0c97ab5ad3715a2943c5 (patch) | |
tree | cc7810b2059a82d076bb49c4f653765b3cd1acb7 | |
parent | e451265d51a5096923fb8d67cfbbab2677794a58 (diff) |
Add a manpage for mvuart(4).
-rw-r--r-- | share/man/man4/Makefile | 4 | ||||
-rw-r--r-- | share/man/man4/mvuart.4 | 42 |
2 files changed, 44 insertions, 2 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index 08675b5dc52..7187776ca8f 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.709 2019/05/11 07:18:15 deraadt Exp $ +# $OpenBSD: Makefile,v 1.710 2019/05/11 15:47:58 patrick Exp $ MAN= aac.4 abcrtc.4 ac97.4 acphy.4 acrtc.4 \ acpi.4 acpiac.4 acpials.4 acpiasus.4 acpibat.4 \ @@ -45,7 +45,7 @@ MAN= aac.4 abcrtc.4 ac97.4 acphy.4 acrtc.4 \ mfii.4 mlphy.4 mobileip.4 moscom.4 mos.4 mpe.4 mpath.4 mpi.4 mpii.4 \ mpip.4 mpu.4 msk.4 mpw.4 msts.4 mtd.4 mtdphy.4 mtio.4 mue.4 \ multicast.4 mvclock.4 mvgicp.4 mvgpio.4 mvicu.4 mvneta.4 \ - mvpinctrl.4 mvrng.4 mvrtc.4 mvtemp.4 myx.4 \ + mvpinctrl.4 mvrng.4 mvrtc.4 mvtemp.4 mvuart.4 myx.4 \ ne.4 neo.4 nep.4 netintro.4 nfe.4 nge.4 nmea.4 \ nsclpcsio.4 nsgphy.4 nsphy.4 nsphyter.4 null.4 nviic.4 nvme.4 nvt.4 \ oce.4 ohci.4 onewire.4 oosiop.4 openprom.4 options.4 osiop.4 otus.4 \ diff --git a/share/man/man4/mvuart.4 b/share/man/man4/mvuart.4 new file mode 100644 index 00000000000..009b68ca9d4 --- /dev/null +++ b/share/man/man4/mvuart.4 @@ -0,0 +1,42 @@ +.\" $OpenBSD: mvuart.4,v 1.1 2019/05/11 15:47:58 patrick Exp $ +.\" +.\" Copyright (c) 2019 Patrick Wildt <patrick@blueri.se> +.\" +.\" Permission to use, copy, modify, and distribute this software for any +.\" purpose with or without fee is hereby granted, provided that the above +.\" copyright notice and this permission notice appear in all copies. +.\" +.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +.\" 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 11 2019 $ +.Dt MVUART 4 +.Os +.Sh NAME +.Nm mvuart +.Nd Marvell Armada Universal Asynchronous Receiver/Transmitter +.Sh SYNOPSIS +.Cd "mvuart* at fdt?" +.Sh DESCRIPTION +The +.Nm +driver provides support for the Marvell Armada Universal Asynchronous +Receiver/Transmitter (UART). +.Sh SEE ALSO +.Xr tty 4 +.Sh HISTORY +The +.Nm +driver first appeared in +.Ox 6.6 . +.Sh AUTHORS +.An -nosplit +The +.Nm +driver was written by +.An Patrick Wildt Aq Mt patrick@blueri.se . |