Changeset 078e0e6 in mainline for uspace/drv/bus/usb/xhci/commands.c
- Timestamp:
- 2017-10-05T16:21:02Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e9e24f2
- Parents:
- 4930b15
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/commands.c
r4930b15 r078e0e6 95 95 xhci_cmd_t *xhci_cmd_alloc(void) 96 96 { 97 xhci_cmd_t *cmd = malloc 32(sizeof(xhci_cmd_t));97 xhci_cmd_t *cmd = malloc(sizeof(xhci_cmd_t)); 98 98 xhci_cmd_init(cmd); 99 99 … … 120 120 { 121 121 xhci_cmd_fini(cmd); 122 free 32(cmd);122 free(cmd); 123 123 } 124 124
Note:
See TracChangeset
for help on using the changeset viewer.