Searched refs:is_short (Results 1 – 8 of 8) sorted by relevance
/linux-3.4.99/drivers/usb/gadget/ |
D | pxa27x_udc.c | 954 int count, is_short, completed = 0; in read_fifo() local 960 is_short = (count < ep->fifo_size); in read_fifo() 962 udc_ep_readl(ep, UDCCSR), count, is_short ? "/S" : "", in read_fifo() 966 if (is_short || req->req.actual == req->req.length) { in read_fifo() 990 int count, is_short, is_last = 0, completed = 0, totcount = 0; in write_fifo() local 995 is_short = 0; in write_fifo() 1016 is_short = 1; in write_fifo() 1024 is_short = unlikely(max < ep->fifo_size); in write_fifo() 1027 if (is_short) in write_fifo() 1038 totcount, is_last ? "/L" : "", is_short ? "/S" : "", in write_fifo() [all …]
|
D | pxa25x_udc.c | 396 int is_last, is_short; in write_fifo() local 402 is_last = is_short = 1; in write_fifo() 410 is_short = unlikely (max < ep->fifo_size); in write_fifo() 415 is_last ? "/L" : "", is_short ? "/S" : "", in write_fifo() 423 if (is_short) in write_fifo() 459 int is_short; in write_ep0_fifo() local 465 is_short = (count != EP0_FIFO_SIZE); in write_ep0_fifo() 470 if (unlikely (is_short)) { in write_ep0_fifo() 503 return is_short; in write_ep0_fifo() 521 unsigned bufferspace, count, is_short; in read_fifo() local [all …]
|
D | net2272.c | 517 unsigned is_short; in net2272_read_packet() local 526 is_short = (avail < ep->ep.maxpacket); in net2272_read_packet() 531 return is_short; in net2272_read_packet() 551 return is_short; in net2272_read_packet() 558 unsigned is_short; in net2272_read_fifo() local 591 is_short = net2272_read_packet(ep, buf, req, count); in net2272_read_fifo() 594 if (unlikely(cleanup || is_short || in net2272_read_fifo()
|
D | s3c-hsudc.c | 389 u32 is_short = 0; in s3c_hsudc_read_fifo() local 404 is_short = (rlen < hsep->ep.maxpacket); in s3c_hsudc_read_fifo() 418 if (is_short || hsreq->req.actual == hsreq->req.length) { in s3c_hsudc_read_fifo()
|
D | goku_udc.c | 413 unsigned bufferspace, is_short, dbuff; in read_fifo() local 450 is_short = (size < ep->ep.maxpacket); in read_fifo() 453 ep->ep.name, size, is_short ? "/S" : "", in read_fifo() 475 if (unlikely(is_short || req->req.actual == req->req.length)) { in read_fifo()
|
D | dummy_hcd.c | 1312 int is_short, to_host; in transfer() local 1335 is_short = 1; in transfer() 1349 is_short = (len % ep->ep.maxpacket) != 0; in transfer() 1370 if (is_short) { in transfer()
|
D | net2280.c | 551 unsigned count, tmp, is_short; in read_fifo() local 601 is_short = (count == 0) || ((count % ep->ep.maxpacket) != 0); in read_fifo() 604 ep->ep.name, count, is_short ? " (short)" : "", in read_fifo() 630 return is_short || ((req->req.actual == req->req.length) in read_fifo()
|
/linux-3.4.99/drivers/usb/renesas_usbhs/ |
D | fifo.c | 486 int is_short; in usbhsf_pio_try_push() local 510 is_short = total_len < maxp; in usbhsf_pio_try_push() 534 else if (is_short) in usbhsf_pio_try_push() 542 if (is_short) in usbhsf_pio_try_push()
|