Changeset 65369473 in mainline for uspace/drv/uhci-hcd/hc.c


Ignore:
Timestamp:
2011-04-04T19:35:28Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
Children:
b6049d7, df40775
Parents:
63dabb6
Message:

Check reserved bw

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/uhci-hcd/hc.c

    r63dabb6 r65369473  
    337337        if (batch->transfer_type == USB_TRANSFER_INTERRUPT ||
    338338            batch->transfer_type == USB_TRANSFER_ISOCHRONOUS) {
     339                size_t bw = bandwidth_count_usb11(batch->speed,
     340                    batch->transfer_type, batch->buffer_size,
     341                    batch->max_packet_size);
    339342                int ret =
    340343                    bandwidth_use(&instance->bandwidth, batch->target.address,
    341                     batch->target.endpoint, batch->direction);
     344                    batch->target.endpoint, batch->direction, bw);
    342345                if (ret != EOK) {
    343346                        usb_log_warning("Failed(%d) to use reserved bw: %s.\n",
Note: See TracChangeset for help on using the changeset viewer.