diff options
author | 2019-01-12 17:07:16 +0000 | |
---|---|---|
committer | 2019-01-12 17:07:16 +0000 | |
commit | 8ee07dee20a7fe2dcd3742b68d11e872232d5fed (patch) | |
tree | ef0d391b3bc3ecf25f969f6abe646e3bb4098808 | |
parent | Use acpidump -q to avoid message about ACPI information not being found. (diff) | |
download | wireguard-openbsd-8ee07dee20a7fe2dcd3742b68d11e872232d5fed.tar.xz wireguard-openbsd-8ee07dee20a7fe2dcd3742b68d11e872232d5fed.zip |
Add a manual page for octgpio(4).
-rw-r--r-- | share/man/man4/man4.octeon/Makefile | 6 | ||||
-rw-r--r-- | share/man/man4/man4.octeon/octgpio.4 | 37 |
2 files changed, 40 insertions, 3 deletions
diff --git a/share/man/man4/man4.octeon/Makefile b/share/man/man4/man4.octeon/Makefile index 908aa424f44..6bb7c481f24 100644 --- a/share/man/man4/man4.octeon/Makefile +++ b/share/man/man4/man4.octeon/Makefile @@ -1,7 +1,7 @@ -# $OpenBSD: Makefile,v 1.12 2018/04/09 13:48:26 visa Exp $ +# $OpenBSD: Makefile,v 1.13 2019/01/12 17:07:16 visa Exp $ -MAN= amdcf.4 cnmac.4 octcib.4 octcit.4 octciu.4 octcrypto.4 octmmc.4 \ - octrng.4 octrtc.4 octsctl.4 octuctl.4 octxctl.4 +MAN= amdcf.4 cnmac.4 octcib.4 octcit.4 octciu.4 octcrypto.4 octgpio.4 \ + octmmc.4 octrng.4 octrtc.4 octsctl.4 octuctl.4 octxctl.4 MANSUBDIR=octeon .include <bsd.prog.mk> diff --git a/share/man/man4/man4.octeon/octgpio.4 b/share/man/man4/man4.octeon/octgpio.4 new file mode 100644 index 00000000000..2bdf0a62c1c --- /dev/null +++ b/share/man/man4/man4.octeon/octgpio.4 @@ -0,0 +1,37 @@ +.\" $OpenBSD: octgpio.4,v 1.1 2019/01/12 17:07:16 visa Exp $ +.\" +.\" Copyright (c) 2019 Visa Hankala +.\" +.\" 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: January 12 2019 $ +.Dt OCTGPIO 4 octeon +.Os +.Sh NAME +.Nm octgpio +.Nd OCTEON GPIO controller +.Sh SYNOPSIS +.Cd "octgpio* at fdt?" +.Sh DESCRIPTION +The +.Nm +driver provides support for the OCTEON GPIO controller. +It does not provide direct device driver entry points but makes its +functions available to other drivers. +.Sh SEE ALSO +.Xr intro 4 +.Sh HISTORY +The +.Nm +driver first appeared in +.Ox 6.5 . |