Lines Matching refs:ep0req
292 struct usb_request *req = ffs->ep0req;
652 req = ffs->ep0req;
708 list_add(&req->list, &ffs->ep0req->list);
793 list_for_each_entry(req, &ffs->ep0req->list, list) {
814 list_for_each_entry(req, &ffs->ep0req->list, list) {
1724 ffs->ep0req = usb_ep_alloc_request(cdev->gadget->ep0, GFP_KERNEL);
1725 if (unlikely(!ffs->ep0req))
1727 ffs->ep0req->complete = ffs_ep0_complete;
1728 ffs->ep0req->context = ffs;
1729 INIT_LIST_HEAD(&ffs->ep0req->list);
1752 usb_ep_free_request(ffs->gadget->ep0, ffs->ep0req);
1753 ffs->ep0req = NULL;