Changeset 5e2aa83 in mainline for kernel/arch/ia64
- Timestamp:
- 2011-07-05T21:28:25Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ff65e91
- Parents:
- f7a55f9 (diff), bee37cf (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. - Location:
- kernel/arch/ia64
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/include/bootinfo.h
rf7a55f9 r5e2aa83 34 34 #define MEMMAP_ITEMS 128 35 35 36 #define EFI_MEMMAP_FREE_MEM 036 #define MEMMAP_FREE_MEM 0 37 37 38 38 /** Size of buffer for storing task name in binit_task_t. */ … … 54 54 unsigned long base; 55 55 unsigned long size; 56 } efi_memmap_item_t;56 } memmap_item_t; 57 57 58 58 typedef struct { 59 59 binit_t taskmap; 60 60 61 efi_memmap_item_t memmap[MEMMAP_ITEMS];61 memmap_item_t memmap[MEMMAP_ITEMS]; 62 62 unsigned int memmap_items; 63 63 … … 66 66 unsigned long freq_scale; 67 67 unsigned int wakeup_intno; 68 int hello_configured;69 68 } bootinfo_t; 70 69 -
kernel/arch/ia64/src/ia64.c
rf7a55f9 r5e2aa83 151 151 /* Set platform name. */ 152 152 #ifdef MACHINE_ski 153 platform = " pc";153 platform = "ski"; 154 154 #endif 155 155 #ifdef MACHINE_i460GX -
kernel/arch/ia64/src/mm/frame.c
rf7a55f9 r5e2aa83 58 58 unsigned int i; 59 59 for (i = 0; i < bootinfo->memmap_items; i++) { 60 if (bootinfo->memmap[i].type == EFI_MEMMAP_FREE_MEM) {60 if (bootinfo->memmap[i].type == MEMMAP_FREE_MEM) { 61 61 uint64_t base = bootinfo->memmap[i].base; 62 62 uint64_t size = bootinfo->memmap[i].size;
Note:
See TracChangeset
for help on using the changeset viewer.