Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 154965
b: refs/heads/master
c: db6e3f9
h: refs/heads/master
i:
  154963: bd16bf0
v: v3
  • Loading branch information
Michal Simek committed Jul 6, 2009
1 parent 1fe6a16 commit 8b51760
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4ae78338157a1fe2d7a398d86bb9f9043d600d2b
refs/heads/master: db6e3f91efd2cf61b9965f722902199cf54adc4f
6 changes: 3 additions & 3 deletions trunk/arch/microblaze/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,15 @@ void __init setup_memory(void)
memory_size = memory_end - memory_start;
PAGE_OFFSET = memory_start;
printk(KERN_INFO "%s: Main mem: 0x%x-0x%x, "
"size 0x%08x\n", __func__, memory_start,
memory_end, memory_size);
"size 0x%08x\n", __func__, (u32) memory_start,
(u32) memory_end, (u32) memory_size);
break;
}
}

if (!memory_start || !memory_end) {
panic("%s: Missing memory setting 0x%08x-0x%08x\n",
__func__, memory_start, memory_end);
__func__, (u32) memory_start, (u32) memory_end);
}

/* reservation of region where is the kernel */
Expand Down

0 comments on commit 8b51760

Please sign in to comment.