Commit 0a7b05c8 authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by James Toy

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>

Cc: Jack Steiner <steiner@sgi.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 63c60168
......@@ -340,10 +340,9 @@ static struct proc_dir_entry *proc_gru __read_mostly;
static int create_proc_file(struct proc_entry *p)
{
p->entry = create_proc_entry(p->name, p->mode, proc_gru);
p->entry = proc_create(p->name, p->mode, proc_gru, p->fops);
if (!p->entry)
return -1;
p->entry->proc_fops = p->fops;
return 0;
}
......
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