summaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorRoi Martin <jroi.martin@gmail.com>2019-10-30 02:03:25 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-10-30 10:41:37 +0100
commit487242c3dd31aca9850825a1df5a13d866509485 (patch)
tree1b6a6bb60b91af31d2638d9afbea4b9c17cc400d /drivers/staging
parent072429a4d6ab5335f07cfc3f95f5e9f73955be10 (diff)
downloadlinux-487242c3dd31aca9850825a1df5a13d866509485.tar.bz2
staging: exfat: remove unnecessary new line in if condition
Fix checkpatch.pl warning: CHECK: Logical continuations should be on the previous line Signed-off-by: Roi Martin <jroi.martin@gmail.com> Link: https://lore.kernel.org/r/20191030010328.10203-4-jroi.martin@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/exfat/exfat_core.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/exfat/exfat_core.c b/drivers/staging/exfat/exfat_core.c
index 69c14e4eec2f..493c0008617b 100644
--- a/drivers/staging/exfat/exfat_core.c
+++ b/drivers/staging/exfat/exfat_core.c
@@ -1727,8 +1727,7 @@ struct entry_set_cache_t *get_entry_set_in_dir(struct super_block *sb,
ep = (struct dentry_t *)(buf + off);
entry_type = p_fs->fs_func->get_entry_type(ep);
- if ((entry_type != TYPE_FILE)
- && (entry_type != TYPE_DIR))
+ if ((entry_type != TYPE_FILE) && (entry_type != TYPE_DIR))
goto err_out;
if (type == ES_ALL_ENTRIES)