Changeset 078e0e6 in mainline for uspace/drv/bus/usb/xhci/hc.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/hc.c

    r4930b15 r078e0e6  
    193193                return ENOMEM;
    194194
    195         hc->dcbaa_virt = malloc32((1 + hc->max_slots) * sizeof(xhci_virt_device_ctx_t));
     195        hc->dcbaa_virt = malloc((1 + hc->max_slots) * sizeof(xhci_virt_device_ctx_t));
    196196        if (!hc->dcbaa_virt) {
    197197                err = ENOMEM;
Note: See TracChangeset for help on using the changeset viewer.