Commit 05014d73 authored by Ryo Munakata's avatar Ryo Munakata Committed by Greg Kroah-Hartman

Staging: zcache: remove unnecessary braces in zcache-main.c

This fixes a checkpatch.pl issue of
'braces {} are not necessary for single statement blocks'
Signed-off-by: default avatarRyo Munakata <ryomnktml@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2643c47f
......@@ -1017,11 +1017,10 @@ static int zcache_frontswap_unuse(void)
unuse_ret = frontswap_unuse(type, offset,
newpage2 != NULL ? newpage2 : evictpage2,
ZCACHE_GFP_MASK);
if (unuse_ret != 0) {
if (unuse_ret != 0)
goto free_and_out;
} else if (evictpage2 != NULL) {
else if (evictpage2 != NULL)
zcache_unacct_page();
}
}
ret = 0;
goto out;
......
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