Home
last modified time | relevance | path

Searched refs:__create_pipe (Results 1 – 2 of 2) sorted by relevance

/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/include/
H A DdrvUSB.h658 static __inline__ U32 __create_pipe(struct usb_device *dev, U32 endpoint) in __create_pipe() function
694 #define usb_sndctrlpipe(dev,endpoint) (((U32)PIPE_CONTROL << 30) | __create_pipe(dev,endpoint))
695 #define usb_rcvctrlpipe(dev,endpoint) (((U32)PIPE_CONTROL << 30) | __create_pipe(dev,endpoint) | U…
696 #define usb_sndisocpipe(dev,endpoint) (((U32)PIPE_ISOCHRONOUS << 30) | __create_pipe(dev,endpoint))
697 #define usb_rcvisocpipe(dev,endpoint) (((U32)PIPE_ISOCHRONOUS << 30) | __create_pipe(dev,endpoint)…
698 #define usb_sndbulkpipe(dev,endpoint) (((U32)PIPE_BULK << 30) | __create_pipe(dev,endpoint))
699 #define usb_rcvbulkpipe(dev,endpoint) (((U32)PIPE_BULK << 30) | __create_pipe(dev,endpoint) | USB_…
700 #define usb_sndintpipe(dev,endpoint) (((U32)PIPE_INTERRUPT << 30) | __create_pipe(dev,endpoint))
701 #define usb_rcvintpipe(dev,endpoint) (((U32)PIPE_INTERRUPT << 30) | __create_pipe(dev,endpoint) | …
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/
H A DdrvMsg.c474 __create_pipe(dev, USB_ENDPOINT_NUMBER_MASK & epaddr) in usb_set_interface()