Changeset 806a779 in mainline
- Timestamp:
- 2018-01-10T18:07:44Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 94a0904
- Parents:
- 8bab0d2
- Location:
- uspace
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/ehci_batch.c
r8bab0d2 r806a779 62 62 assert(ehci_batch); 63 63 dma_buffer_free(&ehci_batch->dma_buffer); 64 usb_log_debug2("Batch(%p): disposed", ehci_batch); 64 65 free(ehci_batch); 65 usb_log_debug2("Batch(%p): disposed", ehci_batch);66 66 } 67 67 -
uspace/lib/usbdev/src/devdrv.c
r8bab0d2 r806a779 440 440 * it makes no sense to speak about alternate interfaces when 441 441 * controlling a device. */ 442 rc =usb_alternate_interfaces_init(&usb_dev->alternate_interfaces,442 usb_alternate_interfaces_init(&usb_dev->alternate_interfaces, 443 443 usb_dev->descriptors.full_config, 444 444 usb_dev->descriptors.full_config_size, usb_dev->interface_no); -
uspace/lib/usbhid/src/hiddescriptor.c
r8bab0d2 r806a779 175 175 176 176 if(report_item->usages_count > 0){ 177 usages = malloc(sizeof( int32_t) * report_item->usages_count);177 usages = malloc(sizeof(uint32_t) * report_item->usages_count); 178 178 memcpy(usages, report_item->usages, sizeof(int32_t) * 179 179 report_item->usages_count);
Note:
See TracChangeset
for help on using the changeset viewer.