Lines Matching refs:ep0req
291 struct usb_request *req = ffs->ep0req;
651 req = ffs->ep0req;
707 list_add(&req->list, &ffs->ep0req->list);
792 list_for_each_entry(req, &ffs->ep0req->list, list) {
813 list_for_each_entry(req, &ffs->ep0req->list, list) {
1722 ffs->ep0req = usb_ep_alloc_request(cdev->gadget->ep0, GFP_KERNEL);
1723 if (unlikely(!ffs->ep0req))
1725 ffs->ep0req->complete = ffs_ep0_complete;
1726 ffs->ep0req->context = ffs;
1727 INIT_LIST_HEAD(&ffs->ep0req->list);
1750 usb_ep_free_request(ffs->gadget->ep0, ffs->ep0req);
1751 ffs->ep0req = NULL;