Changeset de0e6b3 in mainline for uspace/drv/uhci/transfer_list.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/transfer_list.h
r45c4f5a rde0e6b3 36 36 37 37 #include "debug.h" 38 #include "translating_malloc.h"39 38 #include "uhci_struct/queue_head.h" 40 39 #include "uhci_struct/transfer_descriptor.h" 40 #include "utils/malloc32.h" 41 41 42 42 typedef struct transfer_list … … 54 54 assert(instance); 55 55 if (instance->queue_head) 56 trans_free(instance->queue_head);56 free32(instance->queue_head); 57 57 } 58 58
Note:
See TracChangeset
for help on using the changeset viewer.