Changes in uspace/drv/bus/usb/uhci/utils/malloc32.h [76fbd9a:fbcdeb8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/uhci/utils/malloc32.h
r76fbd9a rfbcdeb8 62 62 return result; 63 63 } 64 64 /*----------------------------------------------------------------------------*/ 65 65 /** DMA malloc simulator 66 66 * … … 84 84 return memalign(alignment, size); 85 85 } 86 86 /*----------------------------------------------------------------------------*/ 87 87 /** DMA malloc simulator 88 88 * … … 91 91 static inline void free32(void *addr) 92 92 { free(addr); } 93 93 /*----------------------------------------------------------------------------*/ 94 94 /** Create 4KB page mapping 95 95 * … … 105 105 return address; 106 106 } 107 107 /*----------------------------------------------------------------------------*/ 108 108 static inline void return_page(void *page) 109 109 {
Note:
See TracChangeset
for help on using the changeset viewer.