exfat: remove the assignment of 0 to bool variable
authorJason Yan <yanaijie@huawei.com>
Thu, 16 Apr 2020 04:34:26 +0000 (13:34 +0900)
committerNamjae Jeon <namjae.jeon@samsung.com>
Tue, 9 Jun 2020 07:48:53 +0000 (16:48 +0900)
There is no need to init 'sync' in exfat_set_vol_flags().
This also fixes the following coccicheck warning:

fs/exfat/super.c:104:6-10: WARNING: Assignment of 0/1 to bool variable

Signed-off-by: Jason Yan <yanaijie@huawei.com>
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
fs/exfat/super.c

index f9aa1e5dc2381a4f9e4f9dc6f3d61dc525f1095c..c1f47f4071a80449d7fbbdf81d4f1d7079419d56 100644 (file)
@@ -102,7 +102,7 @@ int exfat_set_vol_flags(struct super_block *sb, unsigned short new_flag)
 {
        struct exfat_sb_info *sbi = EXFAT_SB(sb);
        struct pbr64 *bpb = (struct pbr64 *)sbi->pbr_bh->b_data;
-       bool sync = 0;
+       bool sync;
 
        /* flags are not changed */
        if (sbi->vol_flag == new_flag)