Lines Matching refs:ep
48 struct usb_ep *ep, in ep_matches() argument
57 if (NULL != ep->driver_data) in ep_matches()
66 if ('e' != ep->name[0]) in ep_matches()
72 if ('-' != ep->name[2]) { in ep_matches()
73 tmp = strrchr(ep->name, '-'); in ep_matches()
98 tmp = ep->name + strlen(ep->name); in ep_matches()
128 if (ep->maxpacket < max) in ep_matches()
146 if (isdigit(ep->name[2])) { in ep_matches()
147 u8 num = simple_strtoul(&ep->name[2], NULL, 10); in ep_matches()
163 int size = ep->maxpacket; in ep_matches()
176 struct usb_ep *ep; in find_ep() local
178 list_for_each_entry(ep, &gadget->ep_list, ep_list) { in find_ep()
179 if (0 == strcmp(ep->name, name)) in find_ep()
180 return ep; in find_ep()
220 struct usb_ep *ep = NULL; in usb_ep_autoconfig() local
230 ep = find_ep(gadget, "ep-e"); in usb_ep_autoconfig()
231 if (ep && ep_matches(gadget, ep, desc)) in usb_ep_autoconfig()
232 return ep; in usb_ep_autoconfig()
233 ep = find_ep(gadget, "ep-f"); in usb_ep_autoconfig()
234 if (ep && ep_matches(gadget, ep, desc)) in usb_ep_autoconfig()
235 return ep; in usb_ep_autoconfig()
240 ep = find_ep(gadget, "ep3-bulk"); in usb_ep_autoconfig()
241 if (ep && ep_matches(gadget, ep, desc)) in usb_ep_autoconfig()
242 return ep; in usb_ep_autoconfig()
246 ep = find_ep(gadget, "ep2-bulk"); in usb_ep_autoconfig()
247 if (ep && ep_matches(gadget, ep, desc)) in usb_ep_autoconfig()
248 return ep; in usb_ep_autoconfig()
253 ep = find_ep(gadget, "ep3in-bulk"); in usb_ep_autoconfig()
254 if (ep && ep_matches(gadget, ep, desc)) in usb_ep_autoconfig()
255 return ep; in usb_ep_autoconfig()
258 ep = find_ep(gadget, "ep1-bulk"); in usb_ep_autoconfig()
259 if (ep && ep_matches(gadget, ep, desc)) in usb_ep_autoconfig()
260 return ep; in usb_ep_autoconfig()
280 ep = find_ep(gadget, name); in usb_ep_autoconfig()
281 if (ep && ep_matches(gadget, ep, desc)) in usb_ep_autoconfig()
282 return ep; in usb_ep_autoconfig()
286 ep = gadget->ops->match_ep(gadget, desc, NULL); in usb_ep_autoconfig()
289 list_for_each_entry(ep, &gadget->ep_list, ep_list) { in usb_ep_autoconfig()
290 if (ep_matches(gadget, ep, desc)) in usb_ep_autoconfig()
291 return ep; in usb_ep_autoconfig()
309 struct usb_ep *ep; in usb_ep_autoconfig_reset() local
311 list_for_each_entry(ep, &gadget->ep_list, ep_list) { in usb_ep_autoconfig_reset()
312 ep->driver_data = NULL; in usb_ep_autoconfig_reset()