diff options
| -rw-r--r-- | arch/microblaze/mm/init.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/microblaze/mm/init.c b/arch/microblaze/mm/init.c index b5a701cd71e0..8d92c4efe9a4 100644 --- a/arch/microblaze/mm/init.c +++ b/arch/microblaze/mm/init.c | |||
| @@ -80,15 +80,15 @@ void __init setup_memory(void) | |||
| 80 | memory_size = memory_end - memory_start; | 80 | memory_size = memory_end - memory_start; |
| 81 | PAGE_OFFSET = memory_start; | 81 | PAGE_OFFSET = memory_start; |
| 82 | printk(KERN_INFO "%s: Main mem: 0x%x-0x%x, " | 82 | printk(KERN_INFO "%s: Main mem: 0x%x-0x%x, " |
| 83 | "size 0x%08x\n", __func__, memory_start, | 83 | "size 0x%08x\n", __func__, (u32) memory_start, |
| 84 | memory_end, memory_size); | 84 | (u32) memory_end, (u32) memory_size); |
| 85 | break; | 85 | break; |
| 86 | } | 86 | } |
| 87 | } | 87 | } |
| 88 | 88 | ||
| 89 | if (!memory_start || !memory_end) { | 89 | if (!memory_start || !memory_end) { |
| 90 | panic("%s: Missing memory setting 0x%08x-0x%08x\n", | 90 | panic("%s: Missing memory setting 0x%08x-0x%08x\n", |
| 91 | __func__, memory_start, memory_end); | 91 | __func__, (u32) memory_start, (u32) memory_end); |
| 92 | } | 92 | } |
| 93 | 93 | ||
| 94 | /* reservation of region where is the kernel */ | 94 | /* reservation of region where is the kernel */ |
