Ignore:
Timestamp:
2011-04-01T15:57:34Z (14 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
857edac
Parents:
da9ebca
Message:

Remove useless parameters from bandwidth reservation API.
Add UHCI bandwidth reservation stubs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usb/include/usb/host/bandwidth.h

    rda9ebca r8870230  
    5555
    5656int bandwidth_reserve(bandwidth_t *instance, usb_address_t address,
    57     usb_endpoint_t endpoint, usb_transfer_type_t transfer_type,
    58     size_t max_packet_size, size_t size, unsigned interval);
     57    usb_endpoint_t endpoint, usb_direction_t direction, usb_speed_t speed,
     58    usb_transfer_type_t transfer_type, size_t max_packet_size, size_t size,
     59    unsigned interval);
    5960
    6061int bandwidth_release(bandwidth_t *instance, usb_address_t address,
    61     usb_endpoint_t endpoint, usb_transfer_type_t transfer_type,
    62     size_t max_packet_size, size_t size, unsigned interval);
     62    usb_endpoint_t endpoint, usb_direction_t direction);
    6363
    6464int bandwidth_use(bandwidth_t *instance, usb_address_t address,
    65     usb_endpoint_t endpoint, usb_transfer_type_t transfer_type,
    66     size_t max_packet_size, size_t size, unsigned interval);
     65    usb_endpoint_t endpoint, usb_direction_t direction);
    6766
    6867int bandwidth_free(bandwidth_t *instance, usb_address_t address,
    69     usb_endpoint_t endpoint, usb_transfer_type_t transfer_type,
    70     size_t max_packet_size, size_t size, unsigned interval);
     68    usb_endpoint_t endpoint, usb_direction_t direction);
    7169
    7270#endif
Note: See TracChangeset for help on using the changeset viewer.