提交 ed5054b6 编写于 作者: C Chad Williamson 提交者: Greg Kroah-Hartman

staging: silicom: remove parentheses from return statements in bg_proc.c

Remove unnecessary parentheses from return statements in bg_proc.c to
resolve checkpatch.pl errors.
Signed-off-by: NChad Williamson <chad@dahc.us>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 1713eaf7
......@@ -87,10 +87,10 @@ static struct proc_dir_entry *proc_getdir(char *name,
/* create the directory */
pde = create_proc_entry(name, S_IFDIR, proc_dir);
if (pde == (struct proc_dir_entry *)0) {
return (pde);
return pde;
}
}
return (pde);
return pde;
}
#ifdef BYPASS_SUPPORT
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册