Commit d6f61770 authored by Lennart Sorensen's avatar Lennart Sorensen Committed by Michal Simek

microblaze: Actually show KiB rather than pages in "Freeing initrd memory:"

Fix "Freeing initrd memory:" message on microblaze to show kilobytes as
claimed rather than number of pages.
Signed-off-by: default avatarLennart Sorensen <lsorense@csclub.uwaterloo.ca>
Signed-off-by: default avatarMichal Simek <monstr@monstr.eu>
parent 23575483
...@@ -180,7 +180,8 @@ void free_initrd_mem(unsigned long start, unsigned long end) ...@@ -180,7 +180,8 @@ void free_initrd_mem(unsigned long start, unsigned long end)
totalram_pages++; totalram_pages++;
pages++; pages++;
} }
printk(KERN_NOTICE "Freeing initrd memory: %dk freed\n", pages); printk(KERN_NOTICE "Freeing initrd memory: %dk freed\n",
(int)(pages * (PAGE_SIZE / 1024)));
} }
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment