diff options
| author | Michal Simek <monstr@monstr.eu> | 2009-07-06 02:21:09 -0400 |
|---|---|---|
| committer | Michal Simek <monstr@monstr.eu> | 2009-07-06 04:27:03 -0400 |
| commit | db6e3f91efd2cf61b9965f722902199cf54adc4f (patch) | |
| tree | ff63c4d010e4559c97d3e252dde308e8390fb2cc | |
| parent | 4ae78338157a1fe2d7a398d86bb9f9043d600d2b (diff) | |
microblaze: Fix cast warning for init.c
Signed-off-by: Michal Simek <monstr@monstr.eu>
| -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 */ |
