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