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