Home
last modified time | relevance | path

Searched refs:actbytes (Results 1 – 3 of 3) sorted by relevance

/linux-2.4.37.9/drivers/usb/host/
Dhc_simple.c916 int actbytes = 0; in sh_done_list() local
976 ret = hc_parse_trans (hci, &actbytes, data, &cc, &toggle, len, in sh_done_list()
983 active = (urb_state != US_CTRL_SETUP) && (actbytes && !(actbytes & (maxps - 1))); in sh_done_list()
990 active = active && (urb->transfer_buffer_length != urb->actual_length + actbytes); in sh_done_list()
992 if (urb->transfer_buffer_length == urb->actual_length + actbytes) in sh_done_list()
1043 urb->actual_length += actbytes; in sh_done_list()
1049 urb->iso_frame_desc[iso_index].actual_length = actbytes; in sh_done_list()
Dhc_sl811.c539 static inline int hc_parse_trans (hci_t * hci, int *actbytes, __u8 * data, in hc_parse_trans() argument
580 *actbytes = len - SL811Read (hci, SL11H_XFERCNTREG); in hc_parse_trans()
582 if ((data != NULL) && (*actbytes > 0)) { in hc_parse_trans()
583 SL811BufRead (hci, addr, data, *actbytes); in hc_parse_trans()
585 } else if ((data == NULL) && (*actbytes <= 0)) { in hc_parse_trans()
587 *actbytes); in hc_parse_trans()
591 *actbytes = length; in hc_parse_trans()
Dhc_simple.h182 static inline int hc_parse_trans (hci_t * hci, int *actbytes, __u8 * data,