Changes in uspace/lib/usb/src/pipesio.c [228f251:47c573a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/pipesio.c
r228f251 r47c573a 78 78 * Make call identifying target USB device and type of transfer. 79 79 */ 80 aid_t opening_request = async_send_ 4(pipe->hc_phone,80 aid_t opening_request = async_send_3(pipe->hc_phone, 81 81 DEV_IFACE_ID(USBHC_DEV_IFACE), ipc_method, 82 82 pipe->wire->address, pipe->endpoint_no, 83 pipe->max_packet_size,84 83 NULL); 85 84 if (opening_request == 0) { … … 202 201 * Make call identifying target USB device and type of transfer. 203 202 */ 204 aid_t opening_request = async_send_ 4(pipe->hc_phone,203 aid_t opening_request = async_send_3(pipe->hc_phone, 205 204 DEV_IFACE_ID(USBHC_DEV_IFACE), ipc_method, 206 205 pipe->wire->address, pipe->endpoint_no, 207 pipe->max_packet_size,208 206 NULL); 209 207 if (opening_request == 0) { … … 285 283 * Make call identifying target USB device and control transfer type. 286 284 */ 287 aid_t opening_request = async_send_ 4(pipe->hc_phone,285 aid_t opening_request = async_send_3(pipe->hc_phone, 288 286 DEV_IFACE_ID(USBHC_DEV_IFACE), IPC_M_USBHC_CONTROL_READ, 289 287 pipe->wire->address, pipe->endpoint_no, 290 pipe->max_packet_size,291 288 NULL); 292 289 if (opening_request == 0) { … … 405 402 * Make call identifying target USB device and control transfer type. 406 403 */ 407 aid_t opening_request = async_send_ 5(pipe->hc_phone,404 aid_t opening_request = async_send_4(pipe->hc_phone, 408 405 DEV_IFACE_ID(USBHC_DEV_IFACE), IPC_M_USBHC_CONTROL_WRITE, 409 406 pipe->wire->address, pipe->endpoint_no, 410 407 data_buffer_size, 411 pipe->max_packet_size,412 408 NULL); 413 409 if (opening_request == 0) {
Note:
See TracChangeset
for help on using the changeset viewer.