diff options
author | Joshua Stein <jcs@cvs.openbsd.org> | 2020-06-02 16:24:25 +0000 |
---|---|---|
committer | Joshua Stein <jcs@cvs.openbsd.org> | 2020-06-02 16:24:25 +0000 |
commit | 3e0669e251cca6a973e1df79b57384f6a4e6ce3b (patch) | |
tree | 698e7e6063a426cf689d0caf494969b561d7004a /share/man | |
parent | a4612636e2ca66541a613d2706e1a2a320962bb8 (diff) |
add acpihid(4) for ACPI HID event and 5-button array devices
ok kettenis
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man4/Makefile | 3 | ||||
-rw-r--r-- | share/man/man4/acpi.4 | 6 | ||||
-rw-r--r-- | share/man/man4/acpihid.4 | 42 |
3 files changed, 48 insertions, 3 deletions
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile index 2cce0a9a132..8d87d44a789 100644 --- a/share/man/man4/Makefile +++ b/share/man/man4/Makefile @@ -1,8 +1,9 @@ -# $OpenBSD: Makefile,v 1.773 2020/05/31 18:15:36 jcs Exp $ +# $OpenBSD: Makefile,v 1.774 2020/06/02 16:24:24 jcs Exp $ MAN= aac.4 abcrtc.4 ac97.4 acphy.4 acrtc.4 \ acpi.4 acpiac.4 acpials.4 acpiasus.4 acpibat.4 \ acpibtn.4 acpicbkbd.4 acpicpu.4 acpidock.4 acpihve.4 acpiec.4 \ + acpihid.4 \ acpihpet.4 acpimadt.4 acpimcfg.4 acpipci.4 acpiprt.4 acpipwrres.4 \ acpisbs.4 acpisony.4 acpisurface.4 acpithinkpad.4 acpitoshiba.4 \ acpitimer.4 acpivideo.4 acpivout.4 acpitz.4 \ diff --git a/share/man/man4/acpi.4 b/share/man/man4/acpi.4 index 232d1cd6921..cece6a3e6b5 100644 --- a/share/man/man4/acpi.4 +++ b/share/man/man4/acpi.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: acpi.4,v 1.61 2020/04/14 21:46:24 jmc Exp $ +.\" $OpenBSD: acpi.4,v 1.62 2020/06/02 16:24:24 jcs Exp $ .\" .\" Copyright (c) 2006 Alexander Yurchenko <grange@openbsd.org> .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: April 14 2020 $ +.Dd $Mdocdate: June 2 2020 $ .Dt ACPI 4 .Os .Sh NAME @@ -56,6 +56,8 @@ ACPI processor power and performance state ACPI docking station .It Xr acpiec 4 ACPI embedded controller +.It Xr acpihid 4 +ACPI HID event and 5-button array .It Xr acpihpet 4 ACPI high precision event timer .It Xr acpihve 4 diff --git a/share/man/man4/acpihid.4 b/share/man/man4/acpihid.4 new file mode 100644 index 00000000000..fc5f47c5611 --- /dev/null +++ b/share/man/man4/acpihid.4 @@ -0,0 +1,42 @@ +.\" $OpenBSD: acpihid.4,v 1.1 2020/06/02 16:24:24 jcs Exp $ +.\" +.\" Copyright (c) 2020 joshua stein <jcs@openbsd.org> +.\" +.\" 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: June 2 2020 $ +.Dt ACPIHID 4 +.Os +.Sh NAME +.Nm acpihid +.Nd ACPI HID event and 5-button array +.Sh SYNOPSIS +.Cd "acpihid* at acpi?" +.Sh DESCRIPTION +The +.Nm +driver supports ACPI HID events and 5-button array devices found on some +tablet devices. +.Sh SEE ALSO +.Xr acpi 4 , +.Sh HISTORY +The +.Nm +driver first appeared in +.Ox 6.8 . +.Sh AUTHORS +.An -nosplit +The +.Nm +driver was written by +.An joshua stein Aq Mt jcs@jcs.org . |