staging: exfat: remove redundant if statements
authorTetsuhiro Kohada <Kohada.Tetsuhiro@dc.MitsubishiElectric.co.jp>
Mon, 2 Mar 2020 09:57:16 +0000 (18:57 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 4 Mar 2020 06:46:34 +0000 (07:46 +0100)
If statement does not affect results when updating directory entry in
ffsMapCluster().

Signed-off-by: Tetsuhiro Kohada <Kohada.Tetsuhiro@dc.MitsubishiElectric.co.jp>
Link: https://lore.kernel.org/r/20200302095716.64155-2-Kohada.Tetsuhiro@dc.MitsubishiElectric.co.jp
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/exfat/exfat_super.c

index 7083982..75813d0 100644 (file)
@@ -1361,11 +1361,8 @@ static int ffsMapCluster(struct inode *inode, s32 clu_offset, u32 *clu)
 
                /* (3) update directory entry */
                if (modified) {
-                       if (exfat_get_entry_flag(ep) != fid->flags)
-                               exfat_set_entry_flag(ep, fid->flags);
-
-                       if (exfat_get_entry_clu0(ep) != fid->start_clu)
-                               exfat_set_entry_clu0(ep, fid->start_clu);
+                       exfat_set_entry_flag(ep, fid->flags);
+                       exfat_set_entry_clu0(ep, fid->start_clu);
                }
 
                update_dir_checksum_with_entry_set(sb, es);