uep               207 drivers/infiniband/hw/cxgb4/restrack.c 	union union_ep *uep;
uep               215 drivers/infiniband/hw/cxgb4/restrack.c 	uep = kcalloc(1, sizeof(*uep), GFP_KERNEL);
uep               216 drivers/infiniband/hw/cxgb4/restrack.c 	if (!uep)
uep               226 drivers/infiniband/hw/cxgb4/restrack.c 		uep->lep = *(struct c4iw_listen_ep *)epcp;
uep               228 drivers/infiniband/hw/cxgb4/restrack.c 		listen_ep = &uep->lep;
uep               231 drivers/infiniband/hw/cxgb4/restrack.c 		uep->ep = *(struct c4iw_ep *)epcp;
uep               233 drivers/infiniband/hw/cxgb4/restrack.c 		ep = &uep->ep;
uep               264 drivers/infiniband/hw/cxgb4/restrack.c 	kfree(uep);
uep               270 drivers/infiniband/hw/cxgb4/restrack.c 	kfree(uep);
uep               710 drivers/usb/isp1760/isp1760-udc.c 	struct isp1760_ep *uep = ep_to_udc_ep(ep);
uep               711 drivers/usb/isp1760/isp1760-udc.c 	struct isp1760_udc *udc = uep->udc;
uep               715 drivers/usb/isp1760/isp1760-udc.c 	dev_dbg(uep->udc->isp->dev, "%s\n", __func__);
uep               723 drivers/usb/isp1760/isp1760-udc.c 	    desc->bEndpointAddress != uep->addr ||
uep               728 drivers/usb/isp1760/isp1760-udc.c 			desc->bEndpointAddress, uep->addr,
uep               752 drivers/usb/isp1760/isp1760-udc.c 	uep->desc = desc;
uep               753 drivers/usb/isp1760/isp1760-udc.c 	uep->maxpacket = le16_to_cpu(desc->wMaxPacketSize);
uep               754 drivers/usb/isp1760/isp1760-udc.c 	uep->rx_pending = false;
uep               755 drivers/usb/isp1760/isp1760-udc.c 	uep->halted = false;
uep               756 drivers/usb/isp1760/isp1760-udc.c 	uep->wedged = false;
uep               758 drivers/usb/isp1760/isp1760-udc.c 	isp1760_udc_select_ep(uep);
uep               759 drivers/usb/isp1760/isp1760-udc.c 	isp1760_udc_write(udc, DC_EPMAXPKTSZ, uep->maxpacket);
uep               760 drivers/usb/isp1760/isp1760-udc.c 	isp1760_udc_write(udc, DC_BUFLEN, uep->maxpacket);
uep               770 drivers/usb/isp1760/isp1760-udc.c 	struct isp1760_ep *uep = ep_to_udc_ep(ep);
uep               771 drivers/usb/isp1760/isp1760-udc.c 	struct isp1760_udc *udc = uep->udc;
uep               780 drivers/usb/isp1760/isp1760-udc.c 	if (!uep->desc) {
uep               786 drivers/usb/isp1760/isp1760-udc.c 	uep->desc = NULL;
uep               787 drivers/usb/isp1760/isp1760-udc.c 	uep->maxpacket = 0;
uep               789 drivers/usb/isp1760/isp1760-udc.c 	isp1760_udc_select_ep(uep);
uep               794 drivers/usb/isp1760/isp1760-udc.c 	list_splice_init(&uep->queue, &req_list);
uep               800 drivers/usb/isp1760/isp1760-udc.c 		isp1760_udc_request_complete(uep, req, -ESHUTDOWN);
uep               829 drivers/usb/isp1760/isp1760-udc.c 	struct isp1760_ep *uep = ep_to_udc_ep(ep);
uep               830 drivers/usb/isp1760/isp1760-udc.c 	struct isp1760_udc *udc = uep->udc;
uep               842 drivers/usb/isp1760/isp1760-udc.c 		_req->length, _req->zero ? " (zlp)" : "", uep, uep->addr);
uep               844 drivers/usb/isp1760/isp1760-udc.c 	req->ep = uep;
uep               846 drivers/usb/isp1760/isp1760-udc.c 	if (uep->addr == 0) {
uep               861 drivers/usb/isp1760/isp1760-udc.c 			list_add_tail(&req->queue, &uep->queue);
uep               862 drivers/usb/isp1760/isp1760-udc.c 			isp1760_udc_transmit(uep, req);
uep               866 drivers/usb/isp1760/isp1760-udc.c 			list_add_tail(&req->queue, &uep->queue);
uep               867 drivers/usb/isp1760/isp1760-udc.c 			__isp1760_udc_select_ep(uep, USB_DIR_OUT);
uep               881 drivers/usb/isp1760/isp1760-udc.c 	} else if (uep->desc) {
uep               882 drivers/usb/isp1760/isp1760-udc.c 		bool empty = list_empty(&uep->queue);
uep               884 drivers/usb/isp1760/isp1760-udc.c 		list_add_tail(&req->queue, &uep->queue);
uep               885 drivers/usb/isp1760/isp1760-udc.c 		if ((uep->addr & USB_DIR_IN) && !uep->halted && empty)
uep               886 drivers/usb/isp1760/isp1760-udc.c 			isp1760_udc_transmit(uep, req);
uep               887 drivers/usb/isp1760/isp1760-udc.c 		else if (!(uep->addr & USB_DIR_IN) && uep->rx_pending)
uep               888 drivers/usb/isp1760/isp1760-udc.c 			complete = isp1760_udc_receive(uep, req);
uep               892 drivers/usb/isp1760/isp1760-udc.c 			__func__, uep->addr);
uep               903 drivers/usb/isp1760/isp1760-udc.c 		isp1760_udc_request_complete(uep, req, 0);
uep               911 drivers/usb/isp1760/isp1760-udc.c 	struct isp1760_ep *uep = ep_to_udc_ep(ep);
uep               912 drivers/usb/isp1760/isp1760-udc.c 	struct isp1760_udc *udc = uep->udc;
uep               915 drivers/usb/isp1760/isp1760-udc.c 	dev_dbg(uep->udc->isp->dev, "%s(ep%02x)\n", __func__, uep->addr);
uep               919 drivers/usb/isp1760/isp1760-udc.c 	if (req->ep != uep)
uep               929 drivers/usb/isp1760/isp1760-udc.c 	isp1760_udc_request_complete(uep, req, -ECONNRESET);
uep               933 drivers/usb/isp1760/isp1760-udc.c static int __isp1760_ep_set_halt(struct isp1760_ep *uep, bool stall, bool wedge)
uep               935 drivers/usb/isp1760/isp1760-udc.c 	struct isp1760_udc *udc = uep->udc;
uep               938 drivers/usb/isp1760/isp1760-udc.c 	if (!uep->addr) {
uep               951 drivers/usb/isp1760/isp1760-udc.c 	if (uep->addr && !uep->desc) {
uep               953 drivers/usb/isp1760/isp1760-udc.c 			uep->addr);
uep               957 drivers/usb/isp1760/isp1760-udc.c 	if (uep->addr & USB_DIR_IN) {
uep               959 drivers/usb/isp1760/isp1760-udc.c 		if (!list_empty(&uep->queue)) {
uep               962 drivers/usb/isp1760/isp1760-udc.c 				uep->addr);
uep               967 drivers/usb/isp1760/isp1760-udc.c 	ret = __isp1760_udc_set_halt(uep, stall);
uep               971 drivers/usb/isp1760/isp1760-udc.c 	if (!uep->addr) {
uep               981 drivers/usb/isp1760/isp1760-udc.c 		uep->wedged = true;
uep               983 drivers/usb/isp1760/isp1760-udc.c 		uep->wedged = false;
uep               990 drivers/usb/isp1760/isp1760-udc.c 	struct isp1760_ep *uep = ep_to_udc_ep(ep);
uep               994 drivers/usb/isp1760/isp1760-udc.c 	dev_dbg(uep->udc->isp->dev, "%s: %s halt on ep%02x\n", __func__,
uep               995 drivers/usb/isp1760/isp1760-udc.c 		value ? "set" : "clear", uep->addr);
uep               997 drivers/usb/isp1760/isp1760-udc.c 	spin_lock_irqsave(&uep->udc->lock, flags);
uep               998 drivers/usb/isp1760/isp1760-udc.c 	ret = __isp1760_ep_set_halt(uep, value, false);
uep               999 drivers/usb/isp1760/isp1760-udc.c 	spin_unlock_irqrestore(&uep->udc->lock, flags);
uep              1006 drivers/usb/isp1760/isp1760-udc.c 	struct isp1760_ep *uep = ep_to_udc_ep(ep);
uep              1010 drivers/usb/isp1760/isp1760-udc.c 	dev_dbg(uep->udc->isp->dev, "%s: set wedge on ep%02x)\n", __func__,
uep              1011 drivers/usb/isp1760/isp1760-udc.c 		uep->addr);
uep              1013 drivers/usb/isp1760/isp1760-udc.c 	spin_lock_irqsave(&uep->udc->lock, flags);
uep              1014 drivers/usb/isp1760/isp1760-udc.c 	ret = __isp1760_ep_set_halt(uep, true, true);
uep              1015 drivers/usb/isp1760/isp1760-udc.c 	spin_unlock_irqrestore(&uep->udc->lock, flags);
uep              1022 drivers/usb/isp1760/isp1760-udc.c 	struct isp1760_ep *uep = ep_to_udc_ep(ep);
uep              1023 drivers/usb/isp1760/isp1760-udc.c 	struct isp1760_udc *udc = uep->udc;
uep              1028 drivers/usb/isp1760/isp1760-udc.c 	isp1760_udc_select_ep(uep);
uep                43 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_uep	*uep;
uep                60 drivers/usb/renesas_usbhs/mod_gadget.c 	int (*device)(struct usbhs_priv *priv, struct usbhsg_uep *uep,
uep                62 drivers/usb/renesas_usbhs/mod_gadget.c 	int (*interface)(struct usbhs_priv *priv, struct usbhsg_uep *uep,
uep                64 drivers/usb/renesas_usbhs/mod_gadget.c 	int (*endpoint)(struct usbhs_priv *priv, struct usbhsg_uep *uep,
uep                78 drivers/usb/renesas_usbhs/mod_gadget.c 	     ((i) < (g)->uep_size) && ((pos) = (g)->uep + (i));	\
uep                96 drivers/usb/renesas_usbhs/mod_gadget.c #define usbhsg_gpriv_to_dcp(gp)		((gp)->uep)
uep                97 drivers/usb/renesas_usbhs/mod_gadget.c #define usbhsg_gpriv_to_nth_uep(gp, i)	((gp)->uep + i)
uep               118 drivers/usb/renesas_usbhs/mod_gadget.c static void __usbhsg_queue_pop(struct usbhsg_uep *uep,
uep               122 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
uep               123 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
uep               132 drivers/usb/renesas_usbhs/mod_gadget.c 	usb_gadget_giveback_request(&uep->ep, &ureq->req);
uep               136 drivers/usb/renesas_usbhs/mod_gadget.c static void usbhsg_queue_pop(struct usbhsg_uep *uep,
uep               140 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
uep               145 drivers/usb/renesas_usbhs/mod_gadget.c 	__usbhsg_queue_pop(uep, ureq, status);
uep               152 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_uep *uep = usbhsg_pipe_to_uep(pipe);
uep               159 drivers/usb/renesas_usbhs/mod_gadget.c 	if (uep)
uep               160 drivers/usb/renesas_usbhs/mod_gadget.c 		__usbhsg_queue_pop(uep, ureq, 0);
uep               164 drivers/usb/renesas_usbhs/mod_gadget.c static void usbhsg_queue_push(struct usbhsg_uep *uep,
uep               167 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
uep               169 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
uep               218 drivers/usb/renesas_usbhs/mod_gadget.c 						 struct usbhsg_uep *uep,
uep               231 drivers/usb/renesas_usbhs/mod_gadget.c 						   struct usbhsg_uep *uep,
uep               234 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
uep               235 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
uep               243 drivers/usb/renesas_usbhs/mod_gadget.c 	usbhsg_recip_handler_std_control_done(priv, uep, ctrl);
uep               261 drivers/usb/renesas_usbhs/mod_gadget.c 						 struct usbhsg_uep *uep,
uep               266 drivers/usb/renesas_usbhs/mod_gadget.c 		usbhsg_recip_handler_std_control_done(priv, uep, ctrl);
uep               271 drivers/usb/renesas_usbhs/mod_gadget.c 		usbhsg_recip_handler_std_control_done(priv, uep, ctrl);
uep               279 drivers/usb/renesas_usbhs/mod_gadget.c 						 struct usbhsg_uep *uep,
uep               282 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
uep               286 drivers/usb/renesas_usbhs/mod_gadget.c 	usbhsg_recip_handler_std_control_done(priv, uep, ctrl);
uep               349 drivers/usb/renesas_usbhs/mod_gadget.c 					       struct usbhsg_uep *uep,
uep               352 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
uep               364 drivers/usb/renesas_usbhs/mod_gadget.c 						  struct usbhsg_uep *uep,
uep               367 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
uep               376 drivers/usb/renesas_usbhs/mod_gadget.c 						 struct usbhsg_uep *uep,
uep               379 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
uep               380 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
uep               407 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_uep *uep;
uep               412 drivers/usb/renesas_usbhs/mod_gadget.c 	int (*func)(struct usbhs_priv *priv, struct usbhsg_uep *uep,
uep               416 drivers/usb/renesas_usbhs/mod_gadget.c 	uep = usbhsg_gpriv_to_nth_uep(gpriv, nth);
uep               417 drivers/usb/renesas_usbhs/mod_gadget.c 	pipe = usbhsg_uep_to_pipe(uep);
uep               444 drivers/usb/renesas_usbhs/mod_gadget.c 		ret = func(priv, uep, ctrl);
uep               556 drivers/usb/renesas_usbhs/mod_gadget.c static int usbhsg_pipe_disable(struct usbhsg_uep *uep)
uep               558 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
uep               566 drivers/usb/renesas_usbhs/mod_gadget.c 		usbhsg_queue_pop(uep, usbhsg_pkt_to_ureq(pkt), -ESHUTDOWN);
uep               582 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_uep *uep   = usbhsg_ep_to_uep(ep);
uep               583 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
uep               595 drivers/usb/renesas_usbhs/mod_gadget.c 	if (uep->pipe) {
uep               596 drivers/usb/renesas_usbhs/mod_gadget.c 		usbhs_pipe_clear(uep->pipe);
uep               597 drivers/usb/renesas_usbhs/mod_gadget.c 		usbhs_pipe_sequence_data0(uep->pipe);
uep               606 drivers/usb/renesas_usbhs/mod_gadget.c 		uep->pipe		= pipe;
uep               607 drivers/usb/renesas_usbhs/mod_gadget.c 		pipe->mod_private	= uep;
uep               638 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
uep               642 drivers/usb/renesas_usbhs/mod_gadget.c 	spin_lock_irqsave(&uep->lock, flags);
uep               643 drivers/usb/renesas_usbhs/mod_gadget.c 	pipe = usbhsg_uep_to_pipe(uep);
uep               647 drivers/usb/renesas_usbhs/mod_gadget.c 	usbhsg_pipe_disable(uep);
uep               650 drivers/usb/renesas_usbhs/mod_gadget.c 	uep->pipe->mod_private	= NULL;
uep               651 drivers/usb/renesas_usbhs/mod_gadget.c 	uep->pipe		= NULL;
uep               654 drivers/usb/renesas_usbhs/mod_gadget.c 	spin_unlock_irqrestore(&uep->lock, flags);
uep               685 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
uep               686 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
uep               688 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
uep               696 drivers/usb/renesas_usbhs/mod_gadget.c 	usbhsg_queue_push(uep, ureq);
uep               703 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
uep               708 drivers/usb/renesas_usbhs/mod_gadget.c 	spin_lock_irqsave(&uep->lock, flags);
uep               709 drivers/usb/renesas_usbhs/mod_gadget.c 	pipe = usbhsg_uep_to_pipe(uep);
uep               717 drivers/usb/renesas_usbhs/mod_gadget.c 	usbhsg_queue_pop(uep, ureq, -ECONNRESET);
uep               718 drivers/usb/renesas_usbhs/mod_gadget.c 	spin_unlock_irqrestore(&uep->lock, flags);
uep               725 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
uep               726 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
uep               727 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
uep               877 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_uep *uep;
uep               913 drivers/usb/renesas_usbhs/mod_gadget.c 	usbhsg_for_each_uep_with_dcp(uep, gpriv, i)
uep               914 drivers/usb/renesas_usbhs/mod_gadget.c 		usbhsg_ep_disable(&uep->ep);
uep              1079 drivers/usb/renesas_usbhs/mod_gadget.c 	struct usbhsg_uep *uep;
uep              1091 drivers/usb/renesas_usbhs/mod_gadget.c 	uep = kcalloc(pipe_size, sizeof(struct usbhsg_uep), GFP_KERNEL);
uep              1092 drivers/usb/renesas_usbhs/mod_gadget.c 	if (!uep) {
uep              1118 drivers/usb/renesas_usbhs/mod_gadget.c 	gpriv->uep		= uep;
uep              1137 drivers/usb/renesas_usbhs/mod_gadget.c 	usbhsg_for_each_uep_with_dcp(uep, gpriv, i) {
uep              1138 drivers/usb/renesas_usbhs/mod_gadget.c 		uep->gpriv	= gpriv;
uep              1139 drivers/usb/renesas_usbhs/mod_gadget.c 		uep->pipe	= NULL;
uep              1140 drivers/usb/renesas_usbhs/mod_gadget.c 		snprintf(uep->ep_name, EP_NAME_SIZE, "ep%d", i);
uep              1142 drivers/usb/renesas_usbhs/mod_gadget.c 		uep->ep.name		= uep->ep_name;
uep              1143 drivers/usb/renesas_usbhs/mod_gadget.c 		uep->ep.ops		= &usbhsg_ep_ops;
uep              1144 drivers/usb/renesas_usbhs/mod_gadget.c 		INIT_LIST_HEAD(&uep->ep.ep_list);
uep              1145 drivers/usb/renesas_usbhs/mod_gadget.c 		spin_lock_init(&uep->lock);
uep              1148 drivers/usb/renesas_usbhs/mod_gadget.c 		if (usbhsg_is_dcp(uep)) {
uep              1149 drivers/usb/renesas_usbhs/mod_gadget.c 			gpriv->gadget.ep0 = &uep->ep;
uep              1150 drivers/usb/renesas_usbhs/mod_gadget.c 			usb_ep_set_maxpacket_limit(&uep->ep, 64);
uep              1151 drivers/usb/renesas_usbhs/mod_gadget.c 			uep->ep.caps.type_control = true;
uep              1155 drivers/usb/renesas_usbhs/mod_gadget.c 				uep->ep.caps.type_iso = true;
uep              1157 drivers/usb/renesas_usbhs/mod_gadget.c 				uep->ep.caps.type_bulk = true;
uep              1159 drivers/usb/renesas_usbhs/mod_gadget.c 				uep->ep.caps.type_int = true;
uep              1160 drivers/usb/renesas_usbhs/mod_gadget.c 			usb_ep_set_maxpacket_limit(&uep->ep,
uep              1162 drivers/usb/renesas_usbhs/mod_gadget.c 			list_add_tail(&uep->ep.ep_list, &gpriv->gadget.ep_list);
uep              1164 drivers/usb/renesas_usbhs/mod_gadget.c 		uep->ep.caps.dir_in = true;
uep              1165 drivers/usb/renesas_usbhs/mod_gadget.c 		uep->ep.caps.dir_out = true;
uep              1178 drivers/usb/renesas_usbhs/mod_gadget.c 	kfree(gpriv->uep);
uep              1192 drivers/usb/renesas_usbhs/mod_gadget.c 	kfree(gpriv->uep);
uep               248 drivers/usb/renesas_usbhs/mod_host.c 	struct usbhsh_ep *uep = usbhsh_ep_to_uep(urb->ep);
uep               266 drivers/usb/renesas_usbhs/mod_host.c 	if (usbhsh_uep_to_pipe(uep)) {
uep               296 drivers/usb/renesas_usbhs/mod_host.c 		usbhsh_uep_to_pipe(uep)		= pipe;
uep               297 drivers/usb/renesas_usbhs/mod_host.c 		usbhsh_pipe_to_uep(pipe)	= uep;
uep               316 drivers/usb/renesas_usbhs/mod_host.c 		uep->counter++;
uep               325 drivers/usb/renesas_usbhs/mod_host.c 			       struct usbhsh_ep *uep)
uep               332 drivers/usb/renesas_usbhs/mod_host.c 	if (unlikely(!uep)) {
uep               340 drivers/usb/renesas_usbhs/mod_host.c 	pipe = usbhsh_uep_to_pipe(uep);
uep               344 drivers/usb/renesas_usbhs/mod_host.c 	} else if (1 == uep->counter--) { /* last user */
uep               345 drivers/usb/renesas_usbhs/mod_host.c 		struct usb_host_endpoint *ep = usbhsh_uep_to_ep(uep);
uep               346 drivers/usb/renesas_usbhs/mod_host.c 		struct usbhsh_device *udev = usbhsh_uep_to_udev(uep);
uep               349 drivers/usb/renesas_usbhs/mod_host.c 		usbhsh_uep_to_pipe(uep)		= NULL;
uep               372 drivers/usb/renesas_usbhs/mod_host.c 	struct usbhsh_ep *uep;
uep               377 drivers/usb/renesas_usbhs/mod_host.c 	uep = kzalloc(sizeof(struct usbhsh_ep), mem_flags);
uep               378 drivers/usb/renesas_usbhs/mod_host.c 	if (!uep)
uep               387 drivers/usb/renesas_usbhs/mod_host.c 	uep->counter = 0;
uep               388 drivers/usb/renesas_usbhs/mod_host.c 	INIT_LIST_HEAD(&uep->ep_list);
uep               389 drivers/usb/renesas_usbhs/mod_host.c 	list_add_tail(&uep->ep_list, &udev->ep_list_head);
uep               391 drivers/usb/renesas_usbhs/mod_host.c 	usbhsh_uep_to_udev(uep)	= udev;
uep               392 drivers/usb/renesas_usbhs/mod_host.c 	usbhsh_uep_to_ep(uep)	= ep;
uep               393 drivers/usb/renesas_usbhs/mod_host.c 	usbhsh_ep_to_uep(ep)	= uep;
uep               410 drivers/usb/renesas_usbhs/mod_host.c 	struct usbhsh_ep *uep = usbhsh_ep_to_uep(ep);
uep               413 drivers/usb/renesas_usbhs/mod_host.c 	if (!uep)
uep               417 drivers/usb/renesas_usbhs/mod_host.c 		usbhsh_device_number(hpriv, usbhsh_uep_to_udev(uep)),
uep               420 drivers/usb/renesas_usbhs/mod_host.c 	if (usbhsh_uep_to_pipe(uep))
uep               421 drivers/usb/renesas_usbhs/mod_host.c 		usbhsh_pipe_detach(hpriv, uep);
uep               427 drivers/usb/renesas_usbhs/mod_host.c 	list_del_init(&uep->ep_list);
uep               429 drivers/usb/renesas_usbhs/mod_host.c 	usbhsh_uep_to_udev(uep)	= NULL;
uep               430 drivers/usb/renesas_usbhs/mod_host.c 	usbhsh_uep_to_ep(uep)	= NULL;
uep               436 drivers/usb/renesas_usbhs/mod_host.c 	kfree(uep);
uep               442 drivers/usb/renesas_usbhs/mod_host.c 	struct usbhsh_ep *uep, *next;
uep               444 drivers/usb/renesas_usbhs/mod_host.c 	list_for_each_entry_safe(uep, next, &udev->ep_list_head, ep_list)
uep               445 drivers/usb/renesas_usbhs/mod_host.c 		usbhsh_endpoint_detach(hpriv, usbhsh_uep_to_ep(uep));
uep               664 drivers/usb/renesas_usbhs/mod_host.c 	struct usbhsh_ep *uep = usbhsh_ep_to_uep(urb->ep);
uep               665 drivers/usb/renesas_usbhs/mod_host.c 	struct usbhs_pipe *pipe = usbhsh_uep_to_pipe(uep);
uep               870 drivers/usb/renesas_usbhs/mod_host.c 	struct usbhsh_ep *uep = usbhsh_ep_to_uep(urb->ep);
uep               871 drivers/usb/renesas_usbhs/mod_host.c 	struct usbhs_pipe *pipe = usbhsh_uep_to_pipe(uep);
uep              1050 drivers/usb/renesas_usbhs/mod_host.c 	struct usbhsh_ep *uep = usbhsh_ep_to_uep(ep);
uep              1058 drivers/usb/renesas_usbhs/mod_host.c 	if (!uep)
uep              1061 drivers/usb/renesas_usbhs/mod_host.c 	udev	= usbhsh_uep_to_udev(uep);