Changeset 25a76ab8 in mainline for kernel/arch/ppc32/include/boot/boot.h
- Timestamp:
- 2010-05-08T07:53:23Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 051bc69a
- Parents:
- 6c39a907 (diff), 1317380 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ppc32/include/boot/boot.h
r6c39a907 r25a76ab8 52 52 53 53 typedef struct { 54 uintptr_taddr;55 uint32_t size;54 void *addr; 55 size_t size; 56 56 char name[BOOTINFO_TASK_NAME_BUFLEN]; 57 57 } utask_t; 58 58 59 59 typedef struct { 60 uint32_t count;60 size_t cnt; 61 61 utask_t tasks[TASKMAP_MAX_RECORDS]; 62 62 } taskmap_t; 63 63 64 64 typedef struct { 65 uintptr_tstart;66 uint32_t size;65 void *start; 66 size_t size; 67 67 } memzone_t; 68 68 69 69 typedef struct { 70 uint 32_t total;71 uint32_t count;70 uint64_t total; 71 size_t cnt; 72 72 memzone_t zones[MEMMAP_MAX_RECORDS]; 73 73 } memmap_t; … … 80 80 } bootinfo_t; 81 81 82 extern bootinfo_t bootinfo;82 extern memmap_t memmap; 83 83 84 84 #endif
Note:
See TracChangeset
for help on using the changeset viewer.