diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-09-12 14:57:16 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-09-12 14:57:16 +0000 |
commit | bb7510daa92693b83f0831c75494ff70c9612c1a (patch) | |
tree | 33a452642cb29086cbad2db95b7bbd604de07a95 /share/man/man4/uhid.4 | |
parent | df43a973ec9ce3e6afcff2de56383a8e25ce84dd (diff) |
use the standard .Fa idiom for ioctl(2) args
Diffstat (limited to 'share/man/man4/uhid.4')
-rw-r--r-- | share/man/man4/uhid.4 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/share/man/man4/uhid.4 b/share/man/man4/uhid.4 index bd608f12063..b21523f6aca 100644 --- a/share/man/man4/uhid.4 +++ b/share/man/man4/uhid.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: uhid.4,v 1.17 2016/02/28 17:57:50 stefan Exp $ +.\" $OpenBSD: uhid.4,v 1.18 2017/09/12 14:57:15 schwarze Exp $ .\" $NetBSD: uhid.4,v 1.13 2001/12/29 14:41:59 augustss Exp $ .\" .\" Copyright (c) 1999, 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 28 2016 $ +.Dd $Mdocdate: September 12 2017 $ .Dt UHID 4 .Os .Sh NAME @@ -46,9 +46,9 @@ The device handles the following .Xr ioctl 2 calls: .Bl -tag -width indent -.It Dv USB_GET_REPORT_ID (int) +.It Dv USB_GET_REPORT_ID Fa int Get the report identifier used by this HID report. -.It Dv USB_GET_REPORT_DESC (struct usb_ctl_report_desc) +.It Dv USB_GET_REPORT_DESC Fa "struct usb_ctl_report_desc" Get the HID report descriptor. Using this descriptor the exact layout and meaning of data to/from the device can be found. @@ -59,7 +59,7 @@ struct usb_ctl_report_desc { u_char ucrd_data[1024]; /* filled data size will vary */ }; .Ed -.It Dv USB_GET_REPORT (struct usb_ctl_report) +.It Dv USB_GET_REPORT Fa "struct usb_ctl_report" Get a report from the device without waiting for data on the interrupt pipe. The @@ -77,7 +77,7 @@ struct usb_ctl_report { u_char ucr_data[1024]; /* used data size will vary */ }; .Ed -.It Dv USB_SET_REPORT (struct usb_ctl_report) +.It Dv USB_SET_REPORT Fa "struct usb_ctl_report" Set a report in the device. The .Dv report |