Changes in uspace/drv/uhci-hcd/utils/malloc32.h [563ead9:aeca5a3] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/utils/malloc32.h
r563ead9 raeca5a3 59 59 uintptr_t result; 60 60 const int ret = as_get_physical_mapping(addr, &result); 61 assert(ret == EOK); 62 61 63 if (ret != EOK) 62 64 return 0; … … 96 98 { 97 99 void *free_address = as_get_mappable_page(UHCI_REQUIRED_PAGE_SIZE); 100 assert(free_address); /* TODO: remove this assert */ 98 101 if (free_address == 0) 99 102 return NULL;
Note:
See TracChangeset
for help on using the changeset viewer.