diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2016-12-06 17:25:06 +0100 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2017-02-12 10:36:53 +0100 |
commit | 05b70ff69cdaf0b84f231c2460bf08b27bad3e95 (patch) | |
tree | 676b5a5355ffefac2edac1b3e989709e26ad7af9 /arch/m68k/mm | |
parent | 7c79e1eef8c9a723e589364643c7e74b688e23bf (diff) | |
download | blackbird-obmc-linux-05b70ff69cdaf0b84f231c2460bf08b27bad3e95.tar.gz blackbird-obmc-linux-05b70ff69cdaf0b84f231c2460bf08b27bad3e95.zip |
m68k/mm: sun3 - Modernize printing of kernel messages
- Convert from printk() to pr_*(),
- Add missing print to do_page_mapin(), as print_pte_vaddr() calls
pr_cont().
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/mm')
-rw-r--r-- | arch/m68k/mm/sun3kmap.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/m68k/mm/sun3kmap.c b/arch/m68k/mm/sun3kmap.c index 3dc41158c05e..ae03555449b8 100644 --- a/arch/m68k/mm/sun3kmap.c +++ b/arch/m68k/mm/sun3kmap.c @@ -40,6 +40,7 @@ static inline void do_page_mapin(unsigned long phys, unsigned long virt, sun3_put_pte(virt, pte); #ifdef SUN3_KMAP_DEBUG + pr_info("mapin:"); print_pte_vaddr(virt); #endif @@ -80,8 +81,8 @@ void __iomem *sun3_ioremap(unsigned long phys, unsigned long size, return NULL; #ifdef SUN3_KMAP_DEBUG - printk("ioremap: got virt %p size %lx(%lx)\n", - area->addr, size, area->size); + pr_info("ioremap: got virt %p size %lx(%lx)\n", area->addr, size, + area->size); #endif pages = size / PAGE_SIZE; |