Ignore:
Timestamp:
2011-01-28T12:43:07Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d93ff502
Parents:
45c4f5a
Message:

Used usbmem allocator

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/uhci/uhci_struct/transfer_descriptor.h

    r45c4f5a rde0e6b3  
    3838#include <usb/usb.h>
    3939
    40 #include "translating_malloc.h"
     40#include "utils/malloc32.h"
    4141#include "callback.h"
    4242#include "link_pointer.h"
     
    104104{
    105105        transfer_descriptor_t * instance =
    106           trans_malloc(sizeof(transfer_descriptor_t));
     106          malloc32(sizeof(transfer_descriptor_t));
    107107
    108108        if (instance)
     
    118118        assert(instance);
    119119        transfer_descriptor_fini(instance);
    120         trans_free(instance);
     120        free32(instance);
    121121}
    122122
Note: See TracChangeset for help on using the changeset viewer.