mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 13:27:25 -04:00
staging: lustre: Remove unnecessary braces {} for single statement blocks
Remove unnecessary braces {} for single line statement blocks.
Signed-off-by: Pan Li <incarnation.p.lee@outlook.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
437dffebad
commit
585d84b483
@@ -376,9 +376,8 @@ static struct cl_page *cl_page_find0(const struct lu_env *env,
|
||||
idx) == page));
|
||||
}
|
||||
|
||||
if (page != NULL) {
|
||||
if (page != NULL)
|
||||
return page;
|
||||
}
|
||||
|
||||
/* allocate and initialize cl_page */
|
||||
page = cl_page_alloc(env, o, idx, vmpage, type);
|
||||
|
||||
Reference in New Issue
Block a user