Changeset 834d354 in mainline
- Timestamp:
- 2017-08-01T13:04:09Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6fa91e4c
- Parents:
- 174788f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/scratchpad.c
r174788f r834d354 68 68 69 69 uint64_t *phys_array = malloc32(num_bufs * sizeof(uint64_t)); 70 if (phys_array == NULL)70 if (phys_array == NULL) 71 71 goto err_phys_array; 72 72 73 73 uint64_t *virt_array = malloc32(num_bufs * sizeof(uint64_t)); 74 if (virt_array == NULL)74 if (virt_array == NULL) 75 75 goto err_virt_array; 76 76 … … 118 118 xhci_scratchpad_t *scratchpad; 119 119 uint64_t *virt_array; 120 120 121 121 num_bufs = xhci_scratchpad_count(hc); 122 if (!num_bufs)122 if (!num_bufs) 123 123 return; 124 124
Note:
See TracChangeset
for help on using the changeset viewer.