Changeset 8cbc167 in mainline
- Timestamp:
- 2017-07-06T12:12:14Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b19131c5
- Parents:
- d6133f1
- Location:
- uspace/drv/bus/usb/xhci
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/hc.c
rd6133f1 r8cbc167 196 196 int err; 197 197 198 hc->dcbaa = malloc32((1 + hc->max_slots) * sizeof(xhci_device_ctx_t ));198 hc->dcbaa = malloc32((1 + hc->max_slots) * sizeof(xhci_device_ctx_t*)); 199 199 if (!hc->dcbaa) 200 200 return ENOMEM; -
uspace/drv/bus/usb/xhci/hc.h
rd6133f1 r8cbc167 62 62 xhci_trb_ring_t command_ring; 63 63 xhci_event_ring_t event_ring; 64 xhci_device_ctx_t * dcbaa;64 xhci_device_ctx_t **dcbaa; 65 65 66 66 /* Cached capabilities */
Note:
See TracChangeset
for help on using the changeset viewer.