Changes in uspace/drv/bus/usb/uhci/uhci_batch.c [790318e:549ff23] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/uhci/uhci_batch.c
r790318e r549ff23 48 48 { 49 49 if (uhci_batch) { 50 usb_transfer_batch_d ispose(uhci_batch->usb_batch);50 usb_transfer_batch_destroy(uhci_batch->usb_batch); 51 51 free32(uhci_batch->device_buffer); 52 52 free(uhci_batch); … … 167 167 uhci_batch->td_count); 168 168 uhci_batch->usb_batch->transfered_size = 0; 169 size_t i = 0; 170 for ( ;i < uhci_batch->td_count; ++i) {169 170 for (size_t i = 0;i < uhci_batch->td_count; ++i) { 171 171 if (td_is_active(&uhci_batch->tds[i])) { 172 172 return false;
Note:
See TracChangeset
for help on using the changeset viewer.