Lines Matching +full:ep +full:- +full:side
1 /* SPDX-License-Identifier: GPL-2.0 */
6 * Copyright (C) 2005-2006 by Texas Instruments
7 * Copyright (C) 2006-2007 Nokia Corporation
56 struct musb_ep *ep; member
66 musb_alloc_request(struct usb_ep *ep, gfp_t gfp_flags);
67 extern void musb_free_request(struct usb_ep *ep, struct usb_request *req);
71 * struct musb_ep - peripheral side view of endpoint rx or tx side
74 /* stuff towards the head is basically write-once. */
99 #define to_musb_ep(ep) container_of((ep), struct musb_ep, end_point) argument
101 static inline struct musb_request *next_request(struct musb_ep *ep) in next_request() argument
103 struct list_head *queue = &ep->req_list; in next_request()
107 return container_of(queue->next, struct musb_request, list); in next_request()