Changeset a9d67aa in mainline for uspace/lib/usb/src/pipesio.c
- Timestamp:
- 2011-04-09T17:15:28Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 97e7e8a
- Parents:
- 5410c04 (diff), 77223f8 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/pipesio.c
r5410c04 ra9d67aa 85 85 * Make call identifying target USB device and type of transfer. 86 86 */ 87 aid_t opening_request = async_send_ 4(pipe->hc_phone,87 aid_t opening_request = async_send_3(pipe->hc_phone, 88 88 DEV_IFACE_ID(USBHC_DEV_IFACE), ipc_method, 89 89 pipe->wire->address, pipe->endpoint_no, 90 pipe->max_packet_size,91 90 NULL); 92 91 if (opening_request == 0) { … … 232 231 * Make call identifying target USB device and type of transfer. 233 232 */ 234 aid_t opening_request = async_send_ 4(pipe->hc_phone,233 aid_t opening_request = async_send_3(pipe->hc_phone, 235 234 DEV_IFACE_ID(USBHC_DEV_IFACE), ipc_method, 236 235 pipe->wire->address, pipe->endpoint_no, 237 pipe->max_packet_size,238 236 NULL); 239 237 if (opening_request == 0) { … … 331 329 * Make call identifying target USB device and control transfer type. 332 330 */ 333 aid_t opening_request = async_send_ 4(pipe->hc_phone,331 aid_t opening_request = async_send_3(pipe->hc_phone, 334 332 DEV_IFACE_ID(USBHC_DEV_IFACE), IPC_M_USBHC_CONTROL_READ, 335 333 pipe->wire->address, pipe->endpoint_no, 336 pipe->max_packet_size,337 334 NULL); 338 335 if (opening_request == 0) { … … 473 470 * Make call identifying target USB device and control transfer type. 474 471 */ 475 aid_t opening_request = async_send_ 5(pipe->hc_phone,472 aid_t opening_request = async_send_4(pipe->hc_phone, 476 473 DEV_IFACE_ID(USBHC_DEV_IFACE), IPC_M_USBHC_CONTROL_WRITE, 477 474 pipe->wire->address, pipe->endpoint_no, 478 475 data_buffer_size, 479 pipe->max_packet_size,480 476 NULL); 481 477 if (opening_request == 0) {
Note:
See TracChangeset
for help on using the changeset viewer.