Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/uhci-hcd/utils/malloc32.h

    r563ead9 raeca5a3  
    5959        uintptr_t result;
    6060        const int ret = as_get_physical_mapping(addr, &result);
     61        assert(ret == EOK);
     62
    6163        if (ret != EOK)
    6264                return 0;
     
    9698{
    9799        void *free_address = as_get_mappable_page(UHCI_REQUIRED_PAGE_SIZE);
     100        assert(free_address); /* TODO: remove this assert */
    98101        if (free_address == 0)
    99102                return NULL;
Note: See TracChangeset for help on using the changeset viewer.