Skip to content

Commit

Permalink
[PATCH] printk: arch/i386/mm/ioremap.c
Browse files Browse the repository at this point in the history
printk() calls should include appropriate KERN_* constant.

Signed-off-by: Christophe Lucas <clucas@rotomalug.org>
Signed-off-by: Domen Puncer <domen@coderock.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Christophe Lucas authored and Linus Torvalds committed Jun 25, 2005
1 parent 48b9d03 commit ee48dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/i386/mm/ioremap.c
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ void iounmap(volatile void __iomem *addr)
write_lock(&vmlist_lock);
p = __remove_vm_area((void *) (PAGE_MASK & (unsigned long __force) addr));
if (!p) {
printk("iounmap: bad address %p\n", addr);
printk(KERN_WARNING "iounmap: bad address %p\n", addr);
goto out_unlock;
}

Expand Down

0 comments on commit ee48dd5

Please sign in to comment.