uvc.h (4f2c0a4acffbec01079c28f839422e64ddeff004) uvc.h (3078212cafaece5dfebc7bd57d8c395be7862a5c)
1/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * uvc_gadget.h -- USB Video Class Gadget driver
4 *
5 * Copyright (C) 2009-2010
6 * Laurent Pinchart (laurent.pinchart@ideasonboard.com)
7 */
8

--- 132 unchanged lines hidden (view full) ---

141 const struct uvc_descriptor_header * const *fs_control;
142 const struct uvc_descriptor_header * const *ss_control;
143 const struct uvc_descriptor_header * const *fs_streaming;
144 const struct uvc_descriptor_header * const *hs_streaming;
145 const struct uvc_descriptor_header * const *ss_streaming;
146 } desc;
147
148 unsigned int control_intf;
1/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * uvc_gadget.h -- USB Video Class Gadget driver
4 *
5 * Copyright (C) 2009-2010
6 * Laurent Pinchart (laurent.pinchart@ideasonboard.com)
7 */
8

--- 132 unchanged lines hidden (view full) ---

141 const struct uvc_descriptor_header * const *fs_control;
142 const struct uvc_descriptor_header * const *ss_control;
143 const struct uvc_descriptor_header * const *fs_streaming;
144 const struct uvc_descriptor_header * const *hs_streaming;
145 const struct uvc_descriptor_header * const *ss_streaming;
146 } desc;
147
148 unsigned int control_intf;
149 struct usb_ep *control_ep;
149 struct usb_ep *interrupt_ep;
150 struct usb_request *control_req;
151 void *control_buf;
152
153 unsigned int streaming_intf;
154
155 /* Events */
156 unsigned int event_length;
157 unsigned int event_setup_out : 1;

--- 27 unchanged lines hidden ---
150 struct usb_request *control_req;
151 void *control_buf;
152
153 unsigned int streaming_intf;
154
155 /* Events */
156 unsigned int event_length;
157 unsigned int event_setup_out : 1;

--- 27 unchanged lines hidden ---