Skip to content

Commit

Permalink
UM: Adjust printk in create_proc_mconsole()
Browse files Browse the repository at this point in the history
Adjust printk in create_proc_mconsole() to reflect it is now using
proc_create() not create_proc_mconsole().

Signed-off-by: David Howells <[email protected]>
  • Loading branch information
dhowells authored and Al Viro committed Apr 9, 2013
1 parent 75ef9de commit 4554eb9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions arch/um/drivers/mconsole_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -782,8 +782,7 @@ static int create_proc_mconsole(void)

ent = proc_create("mconsole", 0200, NULL, &mconsole_proc_fops);
if (ent == NULL) {
printk(KERN_INFO "create_proc_mconsole : create_proc_entry "
"failed\n");
printk(KERN_INFO "create_proc_mconsole : proc_create failed\n");
return 0;
}
return 0;
Expand Down

0 comments on commit 4554eb9

Please sign in to comment.