mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-21 00:42:16 +00:00
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: Chad Williamson <chad@dahc.us> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1713eaf7fc
commit
ed5054b6f3
@ -87,10 +87,10 @@ static struct proc_dir_entry *proc_getdir(char *name,
|
|||||||
/* create the directory */
|
/* create the directory */
|
||||||
pde = create_proc_entry(name, S_IFDIR, proc_dir);
|
pde = create_proc_entry(name, S_IFDIR, proc_dir);
|
||||||
if (pde == (struct proc_dir_entry *)0) {
|
if (pde == (struct proc_dir_entry *)0) {
|
||||||
return (pde);
|
return pde;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return (pde);
|
return pde;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef BYPASS_SUPPORT
|
#ifdef BYPASS_SUPPORT
|
||||||
|
Loading…
Reference in New Issue
Block a user