Searched refs:ep0req (Results 1 – 7 of 7) sorted by relevance
/kernel/linux/linux-5.10/drivers/usb/gadget/function/ |
D | u_fs.h | 175 struct usb_request *ep0req; /* P: mutex */ member
|
D | u_generic.h | 224 struct usb_request *ep0req; /* P: mutex */ member
|
D | f_generic.c | 291 struct usb_request *req = ffs->ep0req; in __ffs_ep0_queue_wait() 651 req = ffs->ep0req; in ffs_ep0_iorw() 707 list_add(&req->list, &ffs->ep0req->list); in ffs_ep0_iorw() 792 list_for_each_entry(req, &ffs->ep0req->list, list) { in ffs_ep0_ioctl() 813 list_for_each_entry(req, &ffs->ep0req->list, list) { in ffs_ep0_ioctl() 1722 ffs->ep0req = usb_ep_alloc_request(cdev->gadget->ep0, GFP_KERNEL); in functionfs_bind() 1723 if (unlikely(!ffs->ep0req)) in functionfs_bind() 1725 ffs->ep0req->complete = ffs_ep0_complete; in functionfs_bind() 1726 ffs->ep0req->context = ffs; in functionfs_bind() 1727 INIT_LIST_HEAD(&ffs->ep0req->list); in functionfs_bind() [all …]
|
D | f_fs.c | 278 struct usb_request *req = ffs->ep0req; in __ffs_ep0_queue_wait() 1858 ffs->ep0req = usb_ep_alloc_request(cdev->gadget->ep0, GFP_KERNEL); in functionfs_bind() 1859 if (unlikely(!ffs->ep0req)) in functionfs_bind() 1861 ffs->ep0req->complete = ffs_ep0_complete; in functionfs_bind() 1862 ffs->ep0req->context = ffs; in functionfs_bind() 1884 usb_ep_free_request(ffs->gadget->ep0, ffs->ep0req); in functionfs_unbind() 1885 ffs->ep0req = NULL; in functionfs_unbind()
|
D | f_mass_storage.c | 276 struct usb_request *ep0req; /* Copy of cdev->req */ member 429 rc = usb_ep_queue(common->ep0, common->ep0req, GFP_ATOMIC); in ep0_queue() 491 struct usb_request *req = fsg->common->ep0req; in fsg_setup() 2686 common->ep0req = cdev->req; in fsg_common_set_cdev()
|
/kernel/linux/linux-5.10/drivers/usb/gadget/udc/ |
D | max3420_udc.c | 178 struct max3420_req ep0req; member 1240 udc->ep0req.ep = &udc->ep[0]; in max3420_probe() 1241 udc->ep0req.usb_req.buf = udc->ep0buf; in max3420_probe() 1242 INIT_LIST_HEAD(&udc->ep0req.queue); in max3420_probe()
|
/kernel/linux/patches/linux-5.10/unionpi_tiger_pacth/ |
D | linux-5.10.patch | 15400 - struct usb_request *req = ffs->ep0req; 15760 - req = ffs->ep0req; 15816 - list_add(&req->list, &ffs->ep0req->list); 15901 - list_for_each_entry(req, &ffs->ep0req->list, list) { 15922 - list_for_each_entry(req, &ffs->ep0req->list, list) { 16828 - ffs->ep0req = usb_ep_alloc_request(cdev->gadget->ep0, GFP_KERNEL); 16829 - if (unlikely(!ffs->ep0req)) 16831 - ffs->ep0req->complete = ffs_ep0_complete; 16832 - ffs->ep0req->context = ffs; 16833 - INIT_LIST_HEAD(&ffs->ep0req->list); [all …]
|