From 339dd15849aff3b5696f7f266c84af0e06d88bb6 Mon Sep 17 00:00:00 2001 From: anton Date: Fri, 20 Aug 2021 05:25:23 +0000 Subject: [PATCH] add ucc(4) manual, looks good to jmc@ --- share/man/man4/Makefile | 4 ++-- share/man/man4/ucc.4 | 45 +++++++++++++++++++++++++++++++++++++++++ share/man/man4/uhidev.4 | 6 ++++-- share/man/man4/usb.4 | 6 ++++-- 4 files changed, 55 insertions(+), 6 deletions(-) create mode 100644 share/man/man4/ucc.4 diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index 6a0ecb20653..83cb9e40b8c 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.803 2021/06/29 12:51:18 patrick Exp $ +# $OpenBSD: Makefile,v 1.804 2021/08/20 05:25:23 anton Exp $ MAN= aac.4 abcrtc.4 abl.4 ac97.4 acphy.4 acrtc.4 \ acpi.4 acpiac.4 acpials.4 acpiasus.4 acpibat.4 \ @@ -84,7 +84,7 @@ MAN= aac.4 abcrtc.4 abl.4 ac97.4 acphy.4 acrtc.4 \ tlphy.4 thmc.4 tpm.4 tpmr.4 tqphy.4 trm.4 trunk.4 tsl.4 tty.4 \ tun.4 tap.4 twe.4 \ txp.4 txphy.4 uaudio.4 uark.4 uath.4 ubcmtp.4 uberry.4 ubsa.4 \ - ubsec.4 ucom.4 uchcom.4 ucrcom.4 ucycom.4 ukspan.4 uslhcom.4 \ + ubsec.4 ucc.4 ucom.4 uchcom.4 ucrcom.4 ucycom.4 ukspan.4 uslhcom.4 \ udav.4 udcf.4 udl.4 udp.4 udsbr.4 \ uftdi.4 ugen.4 ugl.4 ugold.4 uguru.4 uhci.4 uhid.4 uhidev.4 uhidpp.4 \ uipaq.4 ujoy.4 uk.4 ukbd.4 \ diff --git a/share/man/man4/ucc.4 b/share/man/man4/ucc.4 new file mode 100644 index 00000000000..675875ef24e --- /dev/null +++ b/share/man/man4/ucc.4 @@ -0,0 +1,45 @@ +.\" $OpenBSD: ucc.4,v 1.1 2021/08/20 05:25:23 anton Exp $ +.\" +.\" Copyright (c) 2021 Anton Lindqvist +.\" +.\" 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: August 20 2021 $ +.Dt UCC 4 +.Os +.Sh NAME +.Nm ucc +.Nd Consumer Control keyboards +.Sh SYNOPSIS +.Cd "ucc* at uhidev?" +.Cd "wsbkd* at ucc? mux 1" +.Sh DESCRIPTION +The +.Nm +driver provides support for Consumer Control pseudo keyboards, often used to +expose audio and application launch keys. +.Sh SEE ALSO +.Xr intro 4 , +.Xr uhidev 4 , +.Xr usb 4 , +.Xr wskbd 4 +.Sh HISTORY +The +.Nm +driver first appeared in +.Ox 7.0 . +.Sh AUTHORS +The +.Nm +driver was written by +.An Anton Lindqvist Aq Mt anton@openbsd.org . diff --git a/share/man/man4/uhidev.4 b/share/man/man4/uhidev.4 index 02252789a3f..2f6bb7f0b13 100644 --- a/share/man/man4/uhidev.4 +++ b/share/man/man4/uhidev.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: uhidev.4,v 1.14 2021/02/04 16:25:38 anton Exp $ +.\" $OpenBSD: uhidev.4,v 1.15 2021/08/20 05:25:23 anton Exp $ .\" $NetBSD: uhidev.4,v 1.2 2001/12/29 03:06:41 augustss Exp $ .\" .\" Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -28,7 +28,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: February 4 2021 $ +.Dd $Mdocdate: August 20 2021 $ .Dt UHIDEV 4 .Os .Sh NAME @@ -37,6 +37,7 @@ .Sh SYNOPSIS .Cd "uhidev* at uhub?" .Cd "fido* at uhidev?" +.Cd "ucc* at uhidev?" .Cd "ucycom* at uhidev?" .Cd "ugold* at uhidev?" .Cd "uhid* at uhidev?" @@ -72,6 +73,7 @@ only dispatches data to them based on the report id. .Sh SEE ALSO .Xr fido 4 , .Xr intro 4 , +.Xr ucc 4 , .Xr ucycom 4 , .Xr ugold 4 , .Xr uhid 4 , diff --git a/share/man/man4/usb.4 b/share/man/man4/usb.4 index dad3d3a97d9..071e94667b8 100644 --- a/share/man/man4/usb.4 +++ b/share/man/man4/usb.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: usb.4,v 1.207 2021/05/07 09:13:19 jsg Exp $ +.\" $OpenBSD: usb.4,v 1.208 2021/08/20 05:25:23 anton Exp $ .\" $NetBSD: usb.4,v 1.15 1999/07/29 14:20:32 augustss Exp $ .\" .\" Copyright (c) 1999 The NetBSD Foundation, Inc. @@ -28,7 +28,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: May 7 2021 $ +.Dd $Mdocdate: August 20 2021 $ .Dt USB 4 .Os .Sh NAME @@ -249,6 +249,8 @@ D-Link DSB-R100 USB radio device FIDO/U2F security keys .It Xr ubcmtp 4 Broadcom trackpad mouse +.It Xr ucc 4 +USB Consumer Control keyboards .It Xr ugold 4 TEMPer gold HID thermometer and hygrometer .It Xr uhid 4 -- 2.20.1