Changeset aab02fb in mainline for uspace/lib/usbvirt/transaction.c
- Timestamp:
- 2010-10-26T22:21:45Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- efedee77
- Parents:
- fa2a361
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbvirt/transaction.c
rfa2a361 raab02fb 67 67 void *buffer, size_t size) 68 68 { 69 device->lib_debug(device, 1, USBVIRT_DEBUGTAG_TRANSACTION, 70 "setup transaction: endpoint=%d, size=%u", endpoint, size); 71 69 72 usbvirt_control_transfer_t *transfer = &device->current_control_transfers[endpoint]; 70 73 … … 97 100 void *buffer, size_t size) 98 101 { 102 device->lib_debug(device, 1, USBVIRT_DEBUGTAG_TRANSACTION, 103 "out transaction: endpoint=%d, size=%u", endpoint, size); 104 99 105 /* 100 106 * First check whether it is a transaction over control pipe. … … 151 157 void *buffer, size_t size, size_t *data_size) 152 158 { 159 device->lib_debug(device, 1, USBVIRT_DEBUGTAG_TRANSACTION, 160 "in transaction: endpoint=%d, size=%u", endpoint, size); 161 153 162 /* 154 163 * First check whether it is a transaction over control pipe.
Note:
See TracChangeset
for help on using the changeset viewer.