Changeset 4ca18ae in mainline for uspace/drv/uhci-hcd/iface.c
- Timestamp:
- 2011-04-06T22:21:12Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 87305bb
- Parents:
- f567bcf
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/iface.c
rf567bcf r4ca18ae 246 246 usb_transfer_batch_t *batch = 247 247 batch_get(fun, target, ep->transfer_type, ep->max_packet_size, 248 ep->speed, data, size, NULL, 0, NULL, callback, arg, 249 &hc->manager, ep); 248 ep->speed, data, size, NULL, 0, NULL, callback, arg, ep); 250 249 if (!batch) 251 250 return ENOMEM; … … 305 304 usb_transfer_batch_t *batch = 306 305 batch_get(fun, target, ep->transfer_type, ep->max_packet_size, 307 ep->speed, data, size, NULL, 0, callback, NULL, arg, 308 &hc->manager, ep); 306 ep->speed, data, size, NULL, 0, callback, NULL, arg, ep); 309 307 if (!batch) 310 308 return ENOMEM; … … 353 351 usb_transfer_batch_t *batch = 354 352 batch_get(fun, target, ep->transfer_type, ep->max_packet_size, 355 ep->speed, data, size, NULL, 0, NULL, callback, arg, 356 &hc->manager, ep); 353 ep->speed, data, size, NULL, 0, NULL, callback, arg, ep); 357 354 if (!batch) 358 355 return ENOMEM; … … 400 397 usb_transfer_batch_t *batch = 401 398 batch_get(fun, target, ep->transfer_type, ep->max_packet_size, 402 ep->speed, data, size, NULL, 0, callback, NULL, arg, 403 &hc->manager, ep); 399 ep->speed, data, size, NULL, 0, callback, NULL, arg, ep); 404 400 if (!batch) 405 401 return ENOMEM; … … 449 445 usb_transfer_batch_t *batch = 450 446 batch_get(fun, target, USB_TRANSFER_CONTROL, max_packet_size, speed, 451 data, size, setup_data, setup_size, NULL, callback, arg, 452 &hc->manager, ep); 447 data, size, setup_data, setup_size, NULL, callback, arg, ep); 453 448 if (!batch) 454 449 return ENOMEM; … … 496 491 usb_transfer_batch_t *batch = 497 492 batch_get(fun, target, USB_TRANSFER_CONTROL, max_packet_size, speed, 498 data, size, setup_data, setup_size, callback, NULL, arg, 499 &hc->manager, ep); 493 data, size, setup_data, setup_size, callback, NULL, arg, ep); 500 494 if (!batch) 501 495 return ENOMEM;
Note:
See TracChangeset
for help on using the changeset viewer.