diff options
author | Anton Blanchard <anton@samba.org> | 2006-03-25 01:27:09 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-03-26 22:48:50 -0500 |
commit | c258dd40ab8851c41873516ef90125e3bcd2e3e1 (patch) | |
tree | 0bcdf1d03a92e2db7a5c0ebaa69ab002f6dd6e2b /arch/powerpc/mm | |
parent | 4df20460a3ff0d60280738b094945c56cb5567a5 (diff) |
[PATCH] powerpc: Consistent printing of node id
We were printing node ids in hex in one spot. Lets be consistent and
always print them in decimal.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/mm')
-rw-r--r-- | arch/powerpc/mm/mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c index badac10d700c..4737f84bb19e 100644 --- a/arch/powerpc/mm/mem.c +++ b/arch/powerpc/mm/mem.c | |||
@@ -342,7 +342,7 @@ void __init mem_init(void) | |||
342 | #ifdef CONFIG_NEED_MULTIPLE_NODES | 342 | #ifdef CONFIG_NEED_MULTIPLE_NODES |
343 | for_each_online_node(nid) { | 343 | for_each_online_node(nid) { |
344 | if (NODE_DATA(nid)->node_spanned_pages != 0) { | 344 | if (NODE_DATA(nid)->node_spanned_pages != 0) { |
345 | printk("freeing bootmem node %x\n", nid); | 345 | printk("freeing bootmem node %d\n", nid); |
346 | totalram_pages += | 346 | totalram_pages += |
347 | free_all_bootmem_node(NODE_DATA(nid)); | 347 | free_all_bootmem_node(NODE_DATA(nid)); |
348 | } | 348 | } |