Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usb/src/pipesio.c

    r77223f8 rd48fcc0  
    8585         * Make call identifying target USB device and type of transfer.
    8686         */
    87         aid_t opening_request = async_send_3(pipe->hc_phone,
     87        aid_t opening_request = async_send_4(pipe->hc_phone,
    8888            DEV_IFACE_ID(USBHC_DEV_IFACE), ipc_method,
    8989            pipe->wire->address, pipe->endpoint_no,
     90            pipe->max_packet_size,
    9091            NULL);
    9192        if (opening_request == 0) {
     
    231232         * Make call identifying target USB device and type of transfer.
    232233         */
    233         aid_t opening_request = async_send_3(pipe->hc_phone,
     234        aid_t opening_request = async_send_4(pipe->hc_phone,
    234235            DEV_IFACE_ID(USBHC_DEV_IFACE), ipc_method,
    235236            pipe->wire->address, pipe->endpoint_no,
     237            pipe->max_packet_size,
    236238            NULL);
    237239        if (opening_request == 0) {
     
    329331         * Make call identifying target USB device and control transfer type.
    330332         */
    331         aid_t opening_request = async_send_3(pipe->hc_phone,
     333        aid_t opening_request = async_send_4(pipe->hc_phone,
    332334            DEV_IFACE_ID(USBHC_DEV_IFACE), IPC_M_USBHC_CONTROL_READ,
    333335            pipe->wire->address, pipe->endpoint_no,
     336            pipe->max_packet_size,
    334337            NULL);
    335338        if (opening_request == 0) {
     
    470473         * Make call identifying target USB device and control transfer type.
    471474         */
    472         aid_t opening_request = async_send_4(pipe->hc_phone,
     475        aid_t opening_request = async_send_5(pipe->hc_phone,
    473476            DEV_IFACE_ID(USBHC_DEV_IFACE), IPC_M_USBHC_CONTROL_WRITE,
    474477            pipe->wire->address, pipe->endpoint_no,
    475478            data_buffer_size,
     479            pipe->max_packet_size,
    476480            NULL);
    477481        if (opening_request == 0) {
Note: See TracChangeset for help on using the changeset viewer.