Changes in / [513857c:32254d6] in mainline


Ignore:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/amd64/src/asm.S

    r513857c r32254d6  
    7373
    7474        0:
    75                 ret                 /* return MEMCPY_DST, success */
     75                ret                 /* return MEMCPY_SRC, success */
    7676FUNCTION_END(memcpy_from_uspace)
    7777FUNCTION_END(memcpy_to_uspace)
  • uspace/app/tester/mm/mapping1.c

    r513857c r32254d6  
    7373        for (i = 0; i < page_count; i++) {
    7474                void *page_start = ((char *) area) + PAGE_SIZE * i;
    75                 uintptr_t phys_dummy;
    76                 errno_t rc = as_get_physical_mapping(page_start, &phys_dummy);
     75                errno_t rc = as_get_physical_mapping(page_start, NULL);
    7776                if (rc != expected_rc) {
    7877                        TPRINTF("as_get_physical_mapping() = %s != %s\n",
Note: See TracChangeset for help on using the changeset viewer.