Lines Matching defs:usb_fifo
248 struct usb_fifo { struct
249 int fifonum; /* fifo index attached to this structure */
250 int active; /* fifo is currently active */
251 struct hfcsusb *hw; /* pointer to main structure */
252 int pipe; /* address of endpoint */
253 __u8 usb_packet_maxlen; /* maximum length for usb transfer */
254 unsigned int max_size; /* maximum size of receive/send packet */
255 __u8 intervall; /* interrupt interval */
256 struct urb *urb; /* transfer structure for usb routines */
257 __u8 buffer[128]; /* buffer USB INT OUT URB data */
258 int bit_line; /* how much bits are in the fifo? */
260 __u8 usb_transfer_mode; /* switched between ISO and INT */
261 struct iso_urb iso[2]; /* two urbs to have one always
285 struct usb_fifo fifos[HFCUSB_NUM_FIFOS]; argument