Changeset 8ff0bd2 in mainline for uspace/lib/usbhost/src/batch.c


Ignore:
Timestamp:
2011-09-04T11:30:58Z (15 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
03bc76a
Parents:
d2c67e7 (diff), deac215e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbhost/src/batch.c

    rd2c67e7 r8ff0bd2  
    109109        assert(instance);
    110110        assert(instance->ep);
     111        assert(instance->next_step);
    111112        endpoint_release(instance->ep);
    112113        instance->next_step(instance);
     
    128129        memcpy(instance->buffer, instance->data_buffer, instance->buffer_size);
    129130
    130         usb_log_debug("Batch(%p) done (T%d.%d, %s %s in, %zuB): %s (%d).\n",
    131             instance, instance->ep->address, instance->ep->endpoint,
    132             usb_str_speed(instance->ep->speed),
    133             usb_str_transfer_type_short(instance->ep->transfer_type),
    134             instance->transfered_size, str_error(instance->error),
    135             instance->error);
     131        usb_log_debug2("Batch %p " USB_TRANSFER_BATCH_FMT " completed (%zuB): %s.\n",
     132            instance, USB_TRANSFER_BATCH_ARGS(*instance),
     133            instance->transfered_size, str_error(instance->error));
    136134
    137135        instance->callback_in(instance->fun, instance->error,
     
    148146        assert(instance->callback_out);
    149147
    150         usb_log_debug("Batch(%p) done (T%d.%d, %s %s out): %s (%d).\n",
    151             instance, instance->ep->address, instance->ep->endpoint,
    152             usb_str_speed(instance->ep->speed),
    153             usb_str_transfer_type_short(instance->ep->transfer_type),
    154             str_error(instance->error), instance->error);
     148        usb_log_debug2("Batch %p " USB_TRANSFER_BATCH_FMT " completed: %s.\n",
     149            instance, USB_TRANSFER_BATCH_ARGS(*instance),
     150            str_error(instance->error));
    155151
    156152        instance->callback_out(instance->fun,
     
    165161{
    166162        assert(instance);
    167         usb_log_debug("Batch(%p) disposing.\n", instance);
     163        usb_log_debug2("Batch %p " USB_TRANSFER_BATCH_FMT " disposing.\n",
     164            instance, USB_TRANSFER_BATCH_ARGS(*instance));
    168165        if (instance->private_data) {
    169166                assert(instance->private_data_dtor);
Note: See TracChangeset for help on using the changeset viewer.