Changeset d41f301 in mainline
- Timestamp:
- 2011-04-07T10:29:05Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9f9b31ad
- Parents:
- 97ab321
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/host/usb_endpoint_manager.c
r97ab321 rd41f301 91 91 size_t size, size_t max_packet_size) 92 92 { 93 /* We care about bandwidth only for interrupt and isochronous. */ 94 if ((type != USB_TRANSFER_INTERRUPT) 95 && (type != USB_TRANSFER_ISOCHRONOUS)) { 96 return 0; 97 } 98 93 99 const unsigned packet_count = 94 100 (size + max_packet_size - 1) / max_packet_size;
Note:
See TracChangeset
for help on using the changeset viewer.