Changeset 25971d2 in mainline for uspace/lib/usb/include/usb/pipes.h


Ignore:
Timestamp:
2011-02-06T22:55:30Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
79d2987
Parents:
cd50486
Message:

Endpoint pipes has maximum packet size

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usb/include/usb/pipes.h

    rcd50486 r25971d2  
    7474        usb_direction_t direction;
    7575
     76        /** Maximum packet size for the endpoint. */
     77        size_t max_packet_size;
     78
    7679        /** Phone to the host controller.
    7780         * Negative when no session is active.
     
    118121int usb_endpoint_pipe_initialize(usb_endpoint_pipe_t *,
    119122    usb_device_connection_t *,
    120     usb_endpoint_t, usb_transfer_type_t, usb_direction_t);
     123    usb_endpoint_t, usb_transfer_type_t, size_t, usb_direction_t);
    121124int usb_endpoint_pipe_initialize_default_control(usb_endpoint_pipe_t *,
    122125    usb_device_connection_t *);
Note: See TracChangeset for help on using the changeset viewer.