Commit ee48dd57 authored by Christophe Lucas's avatar Christophe Lucas Committed by Linus Torvalds

[PATCH] printk: arch/i386/mm/ioremap.c

printk() calls should include appropriate KERN_* constant.
Signed-off-by: default avatarChristophe Lucas <clucas@rotomalug.org>
Signed-off-by: default avatarDomen Puncer <domen@coderock.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 48b9d03c
...@@ -243,7 +243,7 @@ void iounmap(volatile void __iomem *addr) ...@@ -243,7 +243,7 @@ void iounmap(volatile void __iomem *addr)
write_lock(&vmlist_lock); write_lock(&vmlist_lock);
p = __remove_vm_area((void *) (PAGE_MASK & (unsigned long __force) addr)); p = __remove_vm_area((void *) (PAGE_MASK & (unsigned long __force) addr));
if (!p) { if (!p) {
printk("iounmap: bad address %p\n", addr); printk(KERN_WARNING "iounmap: bad address %p\n", addr);
goto out_unlock; goto out_unlock;
} }
......
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