Ignore:
File:
1 edited

Legend:

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

    r228f251 r47c573a  
    7878         * Make call identifying target USB device and type of transfer.
    7979         */
    80         aid_t opening_request = async_send_4(pipe->hc_phone,
     80        aid_t opening_request = async_send_3(pipe->hc_phone,
    8181            DEV_IFACE_ID(USBHC_DEV_IFACE), ipc_method,
    8282            pipe->wire->address, pipe->endpoint_no,
    83             pipe->max_packet_size,
    8483            NULL);
    8584        if (opening_request == 0) {
     
    202201         * Make call identifying target USB device and type of transfer.
    203202         */
    204         aid_t opening_request = async_send_4(pipe->hc_phone,
     203        aid_t opening_request = async_send_3(pipe->hc_phone,
    205204            DEV_IFACE_ID(USBHC_DEV_IFACE), ipc_method,
    206205            pipe->wire->address, pipe->endpoint_no,
    207             pipe->max_packet_size,
    208206            NULL);
    209207        if (opening_request == 0) {
     
    285283         * Make call identifying target USB device and control transfer type.
    286284         */
    287         aid_t opening_request = async_send_4(pipe->hc_phone,
     285        aid_t opening_request = async_send_3(pipe->hc_phone,
    288286            DEV_IFACE_ID(USBHC_DEV_IFACE), IPC_M_USBHC_CONTROL_READ,
    289287            pipe->wire->address, pipe->endpoint_no,
    290             pipe->max_packet_size,
    291288            NULL);
    292289        if (opening_request == 0) {
     
    405402         * Make call identifying target USB device and control transfer type.
    406403         */
    407         aid_t opening_request = async_send_5(pipe->hc_phone,
     404        aid_t opening_request = async_send_4(pipe->hc_phone,
    408405            DEV_IFACE_ID(USBHC_DEV_IFACE), IPC_M_USBHC_CONTROL_WRITE,
    409406            pipe->wire->address, pipe->endpoint_no,
    410407            data_buffer_size,
    411             pipe->max_packet_size,
    412408            NULL);
    413409        if (opening_request == 0) {
Note: See TracChangeset for help on using the changeset viewer.