diff options
author | David Howells <dhowells@redhat.com> | 2013-04-04 17:58:25 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-04-09 20:16:38 +0200 |
commit | 4554eb90659eb3132f41968b77511d7263b631f0 (patch) | |
tree | 45dd7f3a13f488b987e79d6f962a1d93dafb2cd8 /arch/um | |
parent | constify a bunch of struct file_operations instances (diff) | |
download | linux-4554eb90659eb3132f41968b77511d7263b631f0.tar.xz linux-4554eb90659eb3132f41968b77511d7263b631f0.zip |
UM: Adjust printk in create_proc_mconsole()
Adjust printk in create_proc_mconsole() to reflect it is now using
proc_create() not create_proc_mconsole().
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/drivers/mconsole_kern.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/um/drivers/mconsole_kern.c b/arch/um/drivers/mconsole_kern.c index 4bd82ac0210f..d7d21851e60c 100644 --- a/arch/um/drivers/mconsole_kern.c +++ b/arch/um/drivers/mconsole_kern.c @@ -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; |