Commit 4554eb90 authored by David Howells's avatar David Howells Committed by Al Viro
Browse files

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: default avatarDavid Howells <dhowells@redhat.com>
parent 75ef9de1
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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;