Home
last modified time | relevance | path

Searched defs:ms_pipe (Results 1 – 3 of 3) sorted by relevance

/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/newhost/include/
H A DdrvUSBHost.h405 #define usb_pipein(ms_pipe) ((ms_pipe) & USB_DIR_IN) argument
406 #define usb_pipeout(ms_pipe) (!usb_pipein(ms_pipe)) argument
407 #define usb_pipedevice(ms_pipe) (((ms_pipe) >> 8) & 0x7f) argument
408 #define usb_pipeendpoint(ms_pipe) (((ms_pipe) >> 15) & 0xf) argument
409 #define usb_pipetype(ms_pipe) (((ms_pipe) >> 30) & 3) argument
410 #define usb_pipeint(ms_pipe) (usb_pipetype((ms_pipe)) == EP_INTERRUPT) argument
411 #define usb_pipecontrol(ms_pipe) (usb_pipetype((ms_pipe)) == EP_CONTROL) argument
412 #define usb_pipebulk(ms_pipe) (usb_pipetype((ms_pipe)) == EP_BULK) argument
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/newhost/
H A DdrvPipe.c159 int ms_pipe, temp_p, max_p; in ms_usb_submit_urb() local
H A DdrvHub.c1465 void ms_usb_hub_tt_clear_buffer (struct usb_device *ms_dev, int ms_pipe) in ms_usb_hub_tt_clear_buffer()