Searched refs:bulk_pkt_size (Results 1 – 2 of 2) sorted by relevance
/titanic_44/usr/src/uts/common/io/usb/hcd/ehci/ |
H A D | ehci_xfer.c | 1703 uint_t bulk_pkt_size, count; in ehci_insert_bulk_req() local 1718 bulk_pkt_size = min(bulk_reqp->bulk_len, EHCI_MAX_QTD_XFER_SIZE); in ehci_insert_bulk_req() 1720 if (bulk_pkt_size) { in ehci_insert_bulk_req() 1721 residue = tw->tw_length % bulk_pkt_size; in ehci_insert_bulk_req() 1725 "ehci_insert_bulk_req: bulk_pkt_size = %d", bulk_pkt_size); in ehci_insert_bulk_req() 1769 bulk_pkt_size = (uint_t)residue; in ehci_insert_bulk_req() 1774 (void) ehci_insert_qtd(ehcip, ctrl, len, bulk_pkt_size, in ehci_insert_bulk_req() 1777 len = len + bulk_pkt_size; in ehci_insert_bulk_req()
|
/titanic_44/usr/src/uts/common/io/usb/hcd/openhci/ |
H A D | ohci.c | 4997 uint_t bulk_pkt_size, count; in ohci_insert_bulk_req() local 5012 bulk_pkt_size = min(bulk_reqp->bulk_len, OHCI_MAX_TD_XFER_SIZE); in ohci_insert_bulk_req() 5014 if (bulk_pkt_size) in ohci_insert_bulk_req() 5015 residue = tw->tw_length % bulk_pkt_size; in ohci_insert_bulk_req() 5018 "ohci_insert_bulk_req: bulk_pkt_size = %d", bulk_pkt_size); in ohci_insert_bulk_req() 5059 bulk_pkt_size = (uint_t)residue; in ohci_insert_bulk_req() 5075 bulk_pkt_size, 0, pp, tw); in ohci_insert_bulk_req() 5077 len = len + bulk_pkt_size; in ohci_insert_bulk_req()
|