Lines Matching refs:_ep
283 static int at91_ep_enable(struct usb_ep *_ep, in at91_ep_enable() argument
286 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep); in at91_ep_enable()
292 if (!_ep || !ep in at91_ep_enable()
293 || !desc || _ep->name == ep0name in at91_ep_enable()
361 static int at91_ep_disable (struct usb_ep * _ep) in at91_ep_disable() argument
363 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep); in at91_ep_disable()
395 at91_ep_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags) in at91_ep_alloc_request() argument
407 static void at91_ep_free_request(struct usb_ep *_ep, struct usb_request *_req) in at91_ep_free_request() argument
416 static int at91_ep_queue(struct usb_ep *_ep, in at91_ep_queue() argument
426 ep = container_of(_ep, struct at91_ep, ep); in at91_ep_queue()
434 if (!_ep || (!ep->ep.desc && ep->ep.name != ep0name)) { in at91_ep_queue()
516 static int at91_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req) in at91_ep_dequeue() argument
522 ep = container_of(_ep, struct at91_ep, ep); in at91_ep_dequeue()
523 if (!_ep || ep->ep.name == ep0name) in at91_ep_dequeue()
543 static int at91_ep_set_halt(struct usb_ep *_ep, int value) in at91_ep_set_halt() argument
545 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep); in at91_ep_set_halt()
552 if (!_ep || ep->is_iso || !ep->udc->clocked) in at91_ep_set_halt()