Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Aug 2023 11:51:42 GMT
From:      Vladimir Kondratyev <wulf@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 12f5f1147781 - main - hidraw(4): Fix ioctl names in man page.
Message-ID:  <202308061151.376Bpgah072296@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by wulf:

URL: https://cgit.FreeBSD.org/src/commit/?id=12f5f1147781686dda8b50058ba6219d19839895

commit 12f5f1147781686dda8b50058ba6219d19839895
Author:     Vladimir Kondratyev <wulf@FreeBSD.org>
AuthorDate: 2023-08-06 11:51:08 +0000
Commit:     Vladimir Kondratyev <wulf@FreeBSD.org>
CommitDate: 2023-08-06 11:51:08 +0000

    hidraw(4): Fix ioctl names in man page.
---
 share/man/man4/hidraw.4 | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/share/man/man4/hidraw.4 b/share/man/man4/hidraw.4
index c01b961e738d..60398c234fb2 100644
--- a/share/man/man4/hidraw.4
+++ b/share/man/man4/hidraw.4
@@ -65,9 +65,9 @@ calls:
 .Xr uhid 4
 \-compatible calls:
 .Bl -tag -width indent
-.It Dv HID_GET_REPORT_ID Pq Vt int
+.It Dv HIDRAW_GET_REPORT_ID Pq Vt int
 Get the report identifier used by this HID report.
-.It Dv HID_GET_REPORT_DESC Pq Vt "struct hidraw_gen_descriptor"
+.It Dv HIDRAW_GET_REPORT_DESC Pq Vt "struct hidraw_gen_descriptor"
 Get the HID report descriptor.
 Copies a maximum of
 .Va hgd_maxlen
@@ -91,7 +91,7 @@ struct hidraw_gen_descriptor {
 	...
 };
 .Ed
-.It Dv HID_SET_IMMED Pq Vt int
+.It Dv HIDRAW_SET_IMMED Pq Vt int
 Sets the device in a mode where each
 .Xr read 2
 will return the current value of the input report.
@@ -102,7 +102,7 @@ will only return the data that the device reports on its
 interrupt pipe.
 This call may fail if the device does not support
 this feature.
-.It Dv HID_GET_REPORT Pq Vt "struct hidraw_gen_descriptor"
+.It Dv HIDRAW_GET_REPORT Pq Vt "struct hidraw_gen_descriptor"
 Get a report from the device without waiting for data on
 the interrupt pipe.
 Copies a maximum of
@@ -126,7 +126,7 @@ The report data begins from the second byte.
 For devices which do not use numbered reports, the report data begins at the
 first byte.
 This call may fail if the device does not support this feature.
-.It Dv HID_SET_REPORT Pq Vt "struct hidraw_gen_descriptor"
+.It Dv HIDRAW_SET_REPORT Pq Vt "struct hidraw_gen_descriptor"
 Set a report in the device.
 The
 .Va hgd_report_type



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202308061151.376Bpgah072296>