diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-05-26 00:44:10 -0400 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2011-07-24 20:44:04 -0400 |
commit | 6617eaf33d04836d31ea687e79ba9fef02fdbbe9 (patch) | |
tree | aeab8b8bb14d6c3e45703225f0c3982c3b12198e /arch/m68k | |
parent | 45d1564cceea8105c51b065acc8ec1312b81fbc1 (diff) |
m68knommu: Fix printk() format in free_initrd_mem()
arch/m68k/mm/init_no.c:123: warning: format "%d" expects type "int", but argument 2 has type "long unsigned int"
And use pr_notice() while we're at it.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/mm/init_no.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/m68k/mm/init_no.c b/arch/m68k/mm/init_no.c index fdbe6795f270..50cd12cf28d9 100644 --- a/arch/m68k/mm/init_no.c +++ b/arch/m68k/mm/init_no.c | |||
@@ -120,7 +120,8 @@ void free_initrd_mem(unsigned long start, unsigned long end) | |||
120 | totalram_pages++; | 120 | totalram_pages++; |
121 | pages++; | 121 | pages++; |
122 | } | 122 | } |
123 | printk (KERN_NOTICE "Freeing initrd memory: %dk freed\n", pages * (PAGE_SIZE / 1024)); | 123 | pr_notice("Freeing initrd memory: %luk freed\n", |
124 | pages * (PAGE_SIZE / 1024)); | ||
124 | } | 125 | } |
125 | #endif | 126 | #endif |
126 | 127 | ||
@@ -141,7 +142,7 @@ void free_initmem(void) | |||
141 | free_page(addr); | 142 | free_page(addr); |
142 | totalram_pages++; | 143 | totalram_pages++; |
143 | } | 144 | } |
144 | printk(KERN_NOTICE "Freeing unused kernel memory: %ldk freed (0x%x - 0x%x)\n", | 145 | pr_notice("Freeing unused kernel memory: %luk freed (0x%x - 0x%x)\n", |
145 | (addr - PAGE_ALIGN((long) &__init_begin)) >> 10, | 146 | (addr - PAGE_ALIGN((long) &__init_begin)) >> 10, |
146 | (int)(PAGE_ALIGN((unsigned long)(&__init_begin))), | 147 | (int)(PAGE_ALIGN((unsigned long)(&__init_begin))), |
147 | (int)(addr - PAGE_SIZE)); | 148 | (int)(addr - PAGE_SIZE)); |