Home
last modified time | relevance | path

Searched refs:pipe_type (Results 1 – 4 of 4) sorted by relevance

/Linux-v5.10/drivers/usb/renesas_usbhs/
Dpipe.h18 u32 pipe_type; /* USB_ENDPOINT_XFER_xxx */ member
107 #define usbhs_pipe_type(p) ((p)->pipe_type)
108 #define usbhs_pipe_type_is(p, t) ((p)->pipe_type == t)
/Linux-v5.10/drivers/usb/dwc2/
Dhcd.h172 u8 pipe_type; member
506 return pipe->pipe_type; in dwc2_hcd_get_pipe_type()
526 return pipe->pipe_type == USB_ENDPOINT_XFER_ISOC; in dwc2_hcd_is_pipe_isoc()
531 return pipe->pipe_type == USB_ENDPOINT_XFER_INT; in dwc2_hcd_is_pipe_int()
536 return pipe->pipe_type == USB_ENDPOINT_XFER_BULK; in dwc2_hcd_is_pipe_bulk()
541 return pipe->pipe_type == USB_ENDPOINT_XFER_CONTROL; in dwc2_hcd_is_pipe_control()
Dhcd_intr.c994 int pipe_type; in dwc2_hc_xfercomp_intr() local
1005 pipe_type = dwc2_hcd_get_pipe_type(&urb->pipe_info); in dwc2_hc_xfercomp_intr()
1009 if (pipe_type == USB_ENDPOINT_XFER_ISOC) in dwc2_hc_xfercomp_intr()
1029 switch (pipe_type) { in dwc2_hc_xfercomp_intr()
1126 int pipe_type; in dwc2_hc_stall_intr() local
1140 pipe_type = dwc2_hcd_get_pipe_type(&urb->pipe_info); in dwc2_hc_stall_intr()
1142 if (pipe_type == USB_ENDPOINT_XFER_CONTROL) in dwc2_hc_stall_intr()
1145 if (pipe_type == USB_ENDPOINT_XFER_BULK || in dwc2_hc_stall_intr()
1146 pipe_type == USB_ENDPOINT_XFER_INT) { in dwc2_hc_stall_intr()
Dhcd.c3824 urb->pipe_info.pipe_type = ep_type; in dwc2_hcd_urb_set_pipeinfo()