Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ppc32/include/boot/boot.h

    r4872160 re731b0d  
    4747#ifndef __ASM__
    4848
    49 #include <typedefs.h>
     49#include <arch/types.h>
    5050#include <config.h>
    5151#include <genarch/ofw/ofw_tree.h>
    5252
    5353typedef struct {
    54         void *addr;
    55         size_t size;
     54        uintptr_t addr;
     55        uint32_t size;
    5656        char name[BOOTINFO_TASK_NAME_BUFLEN];
    5757} utask_t;
    5858
    5959typedef struct {
    60         size_t cnt;
     60        uint32_t count;
    6161        utask_t tasks[TASKMAP_MAX_RECORDS];
    6262} taskmap_t;
    6363
    6464typedef struct {
    65         void *start;
    66         size_t size;
     65        uintptr_t start;
     66        uint32_t size;
    6767} memzone_t;
    6868
    6969typedef struct {
    70         uint64_t total;
    71         size_t cnt;
     70        uint32_t total;
     71        uint32_t count;
    7272        memzone_t zones[MEMMAP_MAX_RECORDS];
    7373} memmap_t;
     
    8080} bootinfo_t;
    8181
    82 extern memmap_t memmap;
     82extern bootinfo_t bootinfo;
    8383
    8484#endif
Note: See TracChangeset for help on using the changeset viewer.