Searched defs:is_short (Results 1 - 9 of 9) sorted by relevance

/drivers/usb/gadget/udc/
H A Dgoku_udc.c409 unsigned bufferspace, is_short, dbuff; local
446 is_short = (size < ep->ep.maxpacket);
449 ep->ep.name, size, is_short ? "/S" : "",
471 if (unlikely(is_short || req->req.actual == req->req.length)) {
H A Dnet2272.c515 unsigned is_short; local
524 is_short = (avail < ep->ep.maxpacket);
529 return is_short;
549 return is_short;
556 unsigned is_short; local
589 is_short = net2272_read_packet(ep, buf, req, count);
592 if (unlikely(cleanup || is_short ||
H A Dpxa25x_udc.c393 int is_last, is_short; local
399 is_last = is_short = 1;
407 is_short = unlikely (max < ep->fifo_size);
412 is_last ? "/L" : "", is_short ? "/S" : "",
420 if (is_short)
456 int is_short; local
462 is_short = (count != EP0_FIFO_SIZE);
467 if (unlikely (is_short)) {
500 return is_short;
518 unsigned bufferspace, count, is_short; local
[all...]
H A Ds3c-hsudc.c385 u32 is_short = 0; local
400 is_short = (rlen < hsep->ep.maxpacket);
414 if (is_short || hsreq->req.actual == hsreq->req.length) {
H A Ddummy_hcd.c1296 int is_short, to_host; local
1319 is_short = 1;
1333 is_short = (len % ep->ep.maxpacket) != 0;
1354 if (is_short) {
H A Dnet2280.c646 unsigned count, tmp, is_short; local
696 is_short = (count == 0) || ((count % ep->ep.maxpacket) != 0);
699 ep->ep.name, count, is_short ? " (short)" : "",
725 return is_short || ((req->req.actual == req->req.length) &&
H A Dpxa27x_udc.c953 int count, is_short, completed = 0; local
959 is_short = (count < ep->fifo_size);
961 udc_ep_readl(ep, UDCCSR), count, is_short ? "/S" : "",
965 if (is_short || req->req.actual == req->req.length) {
989 int count, is_short, is_last = 0, completed = 0, totcount = 0; local
994 is_short = 0;
1015 is_short = 1;
1023 is_short = unlikely(max < ep->fifo_size);
1026 if (is_short)
1037 totcount, is_last ? "/L" : "", is_short
1056 int count, is_short, completed = 0; local
1095 int is_last, is_short; local
[all...]
H A Dudc-xilinx.c589 u32 is_short, count, bufferspace; local
614 is_short = count < ep->ep_usb.maxpacket;
635 ep->ep_usb.name, count, is_short ? "/S" : "", req,
639 if ((req->usb_req.actual == req->usb_req.length) || is_short) {
683 int is_last, is_short = 0; local
697 is_last = is_short = 1;
707 is_short ? "/S" : "",
/drivers/usb/renesas_usbhs/
H A Dfifo.c511 int is_short; local
537 is_short = total_len < maxp;
561 else if (is_short)
569 if (is_short)
916 int is_short = pkt->trans % usbhs_pipe_get_maxpacket(pipe); local
922 else if (is_short)

Completed in 176 milliseconds