Commit e3e7b40c authored by Al Viro's avatar Al Viro

rtl8192e: don't use create_proc_entry() for directories

proc_mkdir() is there for purpose...
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 021ada7d
......@@ -246,7 +246,7 @@ int __init rtllib_init(void)
struct proc_dir_entry *e;
rtllib_debug_level = debug;
rtllib_proc = create_proc_entry(DRV_NAME, S_IFDIR, init_net.proc_net);
rtllib_proc = proc_mkdir(DRV_NAME, init_net.proc_net);
if (rtllib_proc == NULL) {
RTLLIB_ERROR("Unable to create " DRV_NAME
" proc directory\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment