Changes in kernel/arch/ppc32/include/boot/boot.h [4872160:e731b0d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/include/boot/boot.h
r4872160 re731b0d 47 47 #ifndef __ASM__ 48 48 49 #include < typedefs.h>49 #include <arch/types.h> 50 50 #include <config.h> 51 51 #include <genarch/ofw/ofw_tree.h> 52 52 53 53 typedef struct { 54 void *addr;55 size_t size;54 uintptr_t addr; 55 uint32_t size; 56 56 char name[BOOTINFO_TASK_NAME_BUFLEN]; 57 57 } utask_t; 58 58 59 59 typedef struct { 60 size_t cnt;60 uint32_t count; 61 61 utask_t tasks[TASKMAP_MAX_RECORDS]; 62 62 } taskmap_t; 63 63 64 64 typedef struct { 65 void *start;66 size_t size;65 uintptr_t start; 66 uint32_t size; 67 67 } memzone_t; 68 68 69 69 typedef struct { 70 uint 64_t total;71 size_t cnt;70 uint32_t total; 71 uint32_t count; 72 72 memzone_t zones[MEMMAP_MAX_RECORDS]; 73 73 } memmap_t; … … 80 80 } bootinfo_t; 81 81 82 extern memmap_t memmap;82 extern bootinfo_t bootinfo; 83 83 84 84 #endif
Note:
See TracChangeset
for help on using the changeset viewer.