Changeset 078e0e6 in mainline for uspace/drv/bus/usb/xhci/commands.c


Ignore:
Timestamp:
2017-10-05T16:21:02Z (7 years ago)
Author:
Jaroslav Jindrak <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e9e24f2
Parents:
4930b15
Message:

Removed unnecessary calls to malloc32 and free32.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/xhci/commands.c

    r4930b15 r078e0e6  
    9595xhci_cmd_t *xhci_cmd_alloc(void)
    9696{
    97         xhci_cmd_t *cmd = malloc32(sizeof(xhci_cmd_t));
     97        xhci_cmd_t *cmd = malloc(sizeof(xhci_cmd_t));
    9898        xhci_cmd_init(cmd);
    9999
     
    120120{
    121121        xhci_cmd_fini(cmd);
    122         free32(cmd);
     122        free(cmd);
    123123}
    124124
Note: See TracChangeset for help on using the changeset viewer.