1 // SPDX-License-Identifier: GPL-2.0+
2 /*****************************************************************************/
5 * usbdevice_fs.h -- USB device file system.
8 * Thomas Sailer (sailer@ife.ee.ethz.ch)
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 * 0.1 04.01.2000 Created
28 /*****************************************************************************/
29 #ifndef _LINUX_USBDEVICE_FS_H
30 #define _LINUX_USBDEVICE_FS_H
32 #include <uapi/linux/usbdevice_fs.h>
35 #include <linux/compat.h>
37 struct usbdevfs_ctrltransfer32 {
43 u32 timeout; /* in milliseconds */
47 struct usbdevfs_bulktransfer32 {
50 compat_uint_t timeout; /* in milliseconds */
54 struct usbdevfs_disconnectsignal32 {
56 compat_caddr_t context;
59 struct usbdevfs_urb32 {
61 unsigned char endpoint;
64 compat_caddr_t buffer;
65 compat_int_t buffer_length;
66 compat_int_t actual_length;
67 compat_int_t start_frame;
68 compat_int_t number_of_packets;
69 compat_int_t error_count;
71 compat_caddr_t usercontext; /* unused */
72 struct usbdevfs_iso_packet_desc iso_frame_desc[];
75 struct usbdevfs_ioctl32 {
81 #endif /* _LINUX_USBDEVICE_FS_H */