Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ppc32/src/ppc32.c

    radec5b45 rc0699467  
    4646#include <userspace.h>
    4747#include <mm/page.h>
    48 #include <mm/km.h>
    4948#include <abi/proc/uarg.h>
    5049#include <console/console.h>
     
    7271        size_t i;
    7372        for (i = 0; i < init.cnt; i++) {
    74                 init.tasks[i].paddr = KA2PA(bootinfo->taskmap.tasks[i].addr);
     73                init.tasks[i].addr = (uintptr_t) bootinfo->taskmap.tasks[i].addr;
    7574                init.tasks[i].size = bootinfo->taskmap.tasks[i].size;
    7675                str_cpy(init.tasks[i].name, CONFIG_TASK_NAME_BUFLEN,
     
    209208                size_t size = 2 * PAGE_SIZE;
    210209               
    211                 cuda_t *cuda = (cuda_t *) (km_map(aligned_addr, offset + size,
    212                     PAGE_WRITE | PAGE_NOT_CACHEABLE) + offset);
     210                cuda_t *cuda = (cuda_t *)
     211                    (hw_map(aligned_addr, offset + size) + offset);
    213212               
    214213                /* Initialize I/O controller */
Note: See TracChangeset for help on using the changeset viewer.