Searched refs:transaction_len (Results 1 - 1 of 1) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/gadget/
H A Datmel_usba_udc.c353 unsigned int transaction_len; local
355 transaction_len = req->req.length - req->req.actual;
357 if (transaction_len > ep->ep.maxpacket) {
358 transaction_len = ep->ep.maxpacket;
360 } else if (transaction_len == ep->ep.maxpacket && req->req.zero)
364 ep->ep.name, req, transaction_len,
367 memcpy_toio(ep->fifo, req->req.buf + req->req.actual, transaction_len);
369 req->req.actual += transaction_len;

Completed in 56 milliseconds