Changes in uspace/drv/uhci-hcd/hc.c [62ed5bc:c61338a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/hc.c
r62ed5bc rc61338a 67 67 static int hc_debug_checker(void *arg); 68 68 69 static bool allowed_usb_packet(69 static bool usb_is_allowed( 70 70 bool low_speed, usb_transfer_type_t transfer, size_t size); 71 71 /*----------------------------------------------------------------------------*/ … … 323 323 assert(batch); 324 324 const int low_speed = (batch->speed == USB_SPEED_LOW); 325 if (! allowed_usb_packet(325 if (!usb_is_allowed( 326 326 low_speed, batch->transfer_type, batch->max_packet_size)) { 327 327 usb_log_warning( 328 "Invalid USB packetspecified %s SPEED %d %zu.\n",328 "Invalid USB transfer specified %s SPEED %d %zu.\n", 329 329 low_speed ? "LOW" : "FULL" , batch->transfer_type, 330 330 batch->max_packet_size); … … 471 471 } 472 472 /*----------------------------------------------------------------------------*/ 473 /** Check transfer packets,for USB validity473 /** Check transfers for USB validity 474 474 * 475 475 * @param[in] low_speed Transfer speed. 476 476 * @param[in] transfer Transer type 477 * @param[in] size Maximum size of usedpackets477 * @param[in] size Size of data packets 478 478 * @return True if transaction is allowed by USB specs, false otherwise 479 479 */ 480 bool allowed_usb_packet(480 bool usb_is_allowed( 481 481 bool low_speed, usb_transfer_type_t transfer, size_t size) 482 482 {
Note:
See TracChangeset
for help on using the changeset viewer.