aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/mm/init.c
diff options
context:
space:
mode:
authorThiemo Seufer <ths@networkno.de>2007-01-24 01:29:15 +0000
committerRalf Baechle <ralf@linux-mips.org>2007-01-24 19:23:22 +0000
commit80aac59ed5b3e5ae2132bc620ff5607929c6a304 (patch)
tree99c76e80b8303c859ab71c6df4e3a8b4ec7955d5 /arch/mips/mm/init.c
parent[MIPS] vr41xx: need one more nop with mtc0_tlbw_hazard() (diff)
downloadlinux-dev-80aac59ed5b3e5ae2132bc620ff5607929c6a304.tar.xz
linux-dev-80aac59ed5b3e5ae2132bc620ff5607929c6a304.zip
[MIPS] Fix reported amount of freed memory - it's in kB not bytes
While at it, change message on DEC for consistency. Signed-off-by: Thiemo Seufer <ths@networkno.de> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to '')
-rw-r--r--arch/mips/mm/init.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/mm/init.c b/arch/mips/mm/init.c
index 30245c09d025..49065c133ebf 100644
--- a/arch/mips/mm/init.c
+++ b/arch/mips/mm/init.c
@@ -501,7 +501,8 @@ void free_initmem(void)
freed = prom_free_prom_memory();
if (freed)
- printk(KERN_INFO "Freeing firmware memory: %ldk freed\n",freed);
+ printk(KERN_INFO "Freeing firmware memory: %ldkb freed\n",
+ freed >> 10);
free_init_pages("unused kernel memory",
__pa_symbol(&__init_begin),