From 0cb6a30c6460fad5dc15f951d44bcb9ed2b6a08f Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sat, 30 Jun 2007 05:07:51 +0000 Subject: uhid.4: correct structure field names to match dev/usb/usb.h Submitted by: Dmitry Marakasov PR: 101757 Approved by: re (blanket) --- share/man/man4/uhid.4 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/share/man/man4/uhid.4 b/share/man/man4/uhid.4 index 4f077b745f67..b83051298864 100644 --- a/share/man/man4/uhid.4 +++ b/share/man/man4/uhid.4 @@ -77,8 +77,8 @@ The report descriptor is delivered without any processing. .Bd -literal struct usb_ctl_report_desc { - int size; - u_char data[1024]; /* filled data size will vary */ + int ucrd_size; + u_char ucrd_data[1024]; /* filled data size will vary */ }; .Ed .It Dv USB_SET_IMMED Pq Vt int @@ -106,8 +106,8 @@ or This call may fail if the device does not support this feature. .Bd -literal struct usb_ctl_report { - int report; - u_char data[1024]; /* used data size will vary */ + int ucr_report; + u_char ucr_data[1024]; /* used data size will vary */ }; .Ed .It Dv USB_SET_REPORT Pq Vt "struct usb_ctl_report" -- cgit v1.3