Lines Matching defs:_req
984 * @_req: pointer to the usb request structure.
986 static void xudc_free_request(struct usb_ep *_ep, struct usb_request *_req)
988 struct xusb_req *req = to_xusb_req(_req);
1046 * @_req: pointer to the usb request structure.
1051 static int xudc_ep0_queue(struct usb_ep *_ep, struct usb_request *_req,
1054 struct xusb_req *req = to_xusb_req(_req);
1070 * @_req: pointer to the usb request structure.
1075 static int xudc_ep_queue(struct usb_ep *_ep, struct usb_request *_req,
1078 struct xusb_req *req = to_xusb_req(_req);
1097 _req->status = -EINPROGRESS;
1098 _req->actual = 0;
1133 * @_req: pointer to the usb request structure.
1137 static int xudc_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
1140 struct xusb_req *req = to_xusb_req(_req);
1147 if (&req->usb_req == _req)
1150 if (&req->usb_req != _req) {