Changeset de0e6b3 in mainline for uspace/drv/uhci/uhci_struct/transfer_descriptor.h
- Timestamp:
- 2011-01-28T12:43:07Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d93ff502
- Parents:
- 45c4f5a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci/uhci_struct/transfer_descriptor.h
r45c4f5a rde0e6b3 38 38 #include <usb/usb.h> 39 39 40 #include " translating_malloc.h"40 #include "utils/malloc32.h" 41 41 #include "callback.h" 42 42 #include "link_pointer.h" … … 104 104 { 105 105 transfer_descriptor_t * instance = 106 trans_malloc(sizeof(transfer_descriptor_t));106 malloc32(sizeof(transfer_descriptor_t)); 107 107 108 108 if (instance) … … 118 118 assert(instance); 119 119 transfer_descriptor_fini(instance); 120 trans_free(instance);120 free32(instance); 121 121 } 122 122
Note:
See TracChangeset
for help on using the changeset viewer.