diff options
| author | Warner Losh <imp@FreeBSD.org> | 2007-06-30 05:07:51 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2007-06-30 05:07:51 +0000 |
| commit | 0cb6a30c6460fad5dc15f951d44bcb9ed2b6a08f (patch) | |
| tree | 8a2e9c9c6d40903771de1615077b480e9f230571 | |
| parent | c16d852cca481d13c6d38b037f0a133ee627073b (diff) | |
Notes
| -rw-r--r-- | share/man/man4/uhid.4 | 8 |
1 files 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" |
