[PATCH] Actually show KiB rather than pages in "Freeing initrdmemory:" message on h8300.

From: Lennart Sorensen
Date: Thu Sep 17 2009 - 11:48:46 EST


Fix "Freeing initrd memory:" message on h8300 to show kilobytes as
claimed rather than number of pages.

Signed-off-by: Lennart Sorensen <lsorense@xxxxxxxxxxxxxxxxxxx>

diff --git a/arch/h8300/mm/init.c b/arch/h8300/mm/init.c
index 9942f24..3342f49 100644
--- a/arch/h8300/mm/init.c
+++ b/arch/h8300/mm/init.c
@@ -170,7 +170,7 @@ void free_initrd_mem(unsigned long start, unsigned long end)
totalram_pages++;
pages++;
}
- printk ("Freeing initrd memory: %dk freed\n", pages);
+ printk ("Freeing initrd memory: %dk freed\n", pages * (PAGE_SIZE / 1024));
}
#endif

--
Len Sorensen
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/