Lines Matching refs:_ep
169 static int fotg210_ep_enable(struct usb_ep *_ep, in fotg210_ep_enable() argument
174 ep = container_of(_ep, struct fotg210_ep, ep); in fotg210_ep_enable()
221 static int fotg210_ep_disable(struct usb_ep *_ep) in fotg210_ep_disable() argument
227 BUG_ON(!_ep); in fotg210_ep_disable()
229 ep = container_of(_ep, struct fotg210_ep, ep); in fotg210_ep_disable()
242 static struct usb_request *fotg210_ep_alloc_request(struct usb_ep *_ep, in fotg210_ep_alloc_request() argument
256 static void fotg210_ep_free_request(struct usb_ep *_ep, in fotg210_ep_free_request() argument
404 static int fotg210_ep_queue(struct usb_ep *_ep, struct usb_request *_req, in fotg210_ep_queue() argument
412 ep = container_of(_ep, struct fotg210_ep, ep); in fotg210_ep_queue()
438 static int fotg210_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req) in fotg210_ep_dequeue() argument
444 ep = container_of(_ep, struct fotg210_ep, ep); in fotg210_ep_dequeue()
490 static int fotg210_set_halt_and_wedge(struct usb_ep *_ep, int value, int wedge) in fotg210_set_halt_and_wedge() argument
496 ep = container_of(_ep, struct fotg210_ep, ep); in fotg210_set_halt_and_wedge()
520 static int fotg210_ep_set_halt(struct usb_ep *_ep, int value) in fotg210_ep_set_halt() argument
522 return fotg210_set_halt_and_wedge(_ep, value, 0); in fotg210_ep_set_halt()
525 static int fotg210_ep_set_wedge(struct usb_ep *_ep) in fotg210_ep_set_wedge() argument
527 return fotg210_set_halt_and_wedge(_ep, 1, 1); in fotg210_ep_set_wedge()
530 static void fotg210_ep_fifo_flush(struct usb_ep *_ep) in fotg210_ep_fifo_flush() argument
721 static void fotg210_ep0_complete(struct usb_ep *_ep, struct usb_request *req) in fotg210_ep0_complete() argument
726 ep = container_of(_ep, struct fotg210_ep, ep); in fotg210_ep0_complete()