1
0

[PATCH] uml: Clean up prink calls

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: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Este cometimento está contido em:
Christophe Lucas
2005-07-28 21:16:12 -07:00
cometido por Linus Torvalds
ascendente 201134ca16
cometimento 30f417c65e
3 ficheiros modificados com 3 adições e 3 eliminações

Ver ficheiro

@@ -48,7 +48,7 @@ static int make_proc_exitcode(void)
ent = create_proc_entry("exitcode", 0600, &proc_root);
if(ent == NULL){
printk("make_proc_exitcode : Failed to register "
printk(KERN_WARNING "make_proc_exitcode : Failed to register "
"/proc/exitcode\n");
return(0);
}

Ver ficheiro

@@ -412,7 +412,7 @@ int __init make_proc_sysemu(void)
if (ent == NULL)
{
printk("Failed to register /proc/sysemu\n");
printk(KERN_WARNING "Failed to register /proc/sysemu\n");
return(0);
}