Changeset 7f1c620 in mainline for arch/ppc64/include/boot/boot.h
- Timestamp:
- 2006-07-04T17:17:56Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0ffa3ef5
- Parents:
- 991779c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ppc64/include/boot/boot.h
r991779c5 r7f1c620 49 49 50 50 typedef struct { 51 __addressaddr;52 __u64size;51 uintptr_t addr; 52 uint64_t size; 53 53 } utask_t; 54 54 55 55 typedef struct { 56 __u32count;56 uint32_t count; 57 57 utask_t tasks[TASKMAP_MAX_RECORDS]; 58 58 } taskmap_t; 59 59 60 60 typedef struct { 61 __addressstart;62 __u64size;61 uintptr_t start; 62 uint64_t size; 63 63 } memzone_t; 64 64 65 65 typedef struct { 66 __u64total;67 __u32count;66 uint64_t total; 67 uint32_t count; 68 68 memzone_t zones[MEMMAP_MAX_RECORDS]; 69 69 } memmap_t; 70 70 71 71 typedef struct { 72 __addressaddr;72 uintptr_t addr; 73 73 unsigned int width; 74 74 unsigned int height;
Note:
See TracChangeset
for help on using the changeset viewer.