Searched refs:control_req (Results 1 – 7 of 7) sorted by relevance
995 uvc->control_req = usb_ep_alloc_request(cdev->gadget->ep0, GFP_KERNEL); in uvc_function_bind()997 if (uvc->control_req == NULL || uvc->control_buf == NULL) { in uvc_function_bind()1002 uvc->control_req->buf = uvc->control_buf; in uvc_function_bind()1003 uvc->control_req->complete = uvc_function_ep0_complete; in uvc_function_bind()1004 uvc->control_req->context = uvc; in uvc_function_bind()1030 if (uvc->control_req) in uvc_function_bind()1031 usb_ep_free_request(cdev->gadget->ep0, uvc->control_req); in uvc_function_bind()1232 usb_ep_free_request(cdev->gadget->ep0, uvc->control_req); in uvc_function_unbind()
146 struct usb_request *control_req; member
36 struct usb_request *req = uvc->control_req; in uvc_send_response()
599 struct usb_ctrlrequest *control_req = NULL; in send_packet() local615 control_req = kmalloc(sizeof(*control_req), GFP_KERNEL); in send_packet()616 if (control_req == NULL) in send_packet()620 control_req->bRequestType = 0x21; in send_packet()621 control_req->bRequest = 0x09; in send_packet()622 control_req->wValue = cpu_to_le16(0x0200); in send_packet()623 control_req->wIndex = cpu_to_le16(0x0001); in send_packet()624 control_req->wLength = cpu_to_le16(0x0008); in send_packet()631 pipe, (unsigned char *)control_req, in send_packet()663 kfree(control_req); in send_packet()
287 u64 control_req; member
759 (unsigned long long) stat_info.control_req);
870 DEFINE_CACHE_ALIGN_BUFFER(u8, control_req, USB_BUFSIZ);2259 dev->req->buf = control_req; in eth_bind()