[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200210183558.11836-13-pragat.pandya@gmail.com>
Date: Tue, 11 Feb 2020 00:05:51 +0530
From: Pragat Pandya <pragat.pandya@...il.com>
To: gregkh@...uxfoundation.org, valdis.kletnieks@...edu
Cc: devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
skhan@...uxfoundation.org, linux-fsdevel@...r.kernel.org,
linux-kernel-mentees@...ts.linuxfoundation.org,
Pragat Pandya <pragat.pandya@...il.com>
Subject: [PATCH v2 12/19] staging: exfat: Rename variable 'UsedClusters' to 'used_clusters'
Fix checkpatch warning: Avoid CamelCase
Change all occurrences of identifier "UsedClusters" to "used_clusters"
Signed-off-by: Pragat Pandya <pragat.pandya@...il.com>
---
drivers/staging/exfat/exfat.h | 2 +-
drivers/staging/exfat/exfat_super.c | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/staging/exfat/exfat.h b/drivers/staging/exfat/exfat.h
index aa6c46628fdd..01d79dcc1c94 100644
--- a/drivers/staging/exfat/exfat.h
+++ b/drivers/staging/exfat/exfat.h
@@ -246,7 +246,7 @@ struct vol_info_t {
u32 cluster_size;
u32 num_clusters;
u32 free_clusters;
- u32 UsedClusters;
+ u32 used_clusters;
};
/* directory structure */
diff --git a/drivers/staging/exfat/exfat_super.c b/drivers/staging/exfat/exfat_super.c
index dcccf4170afe..7d70206eb5f8 100644
--- a/drivers/staging/exfat/exfat_super.c
+++ b/drivers/staging/exfat/exfat_super.c
@@ -497,8 +497,8 @@ static int ffsGetVolInfo(struct super_block *sb, struct vol_info_t *info)
info->fat_type = p_fs->vol_type;
info->cluster_size = p_fs->cluster_size;
info->num_clusters = p_fs->num_clusters - 2; /* clu 0 & 1 */
- info->UsedClusters = p_fs->used_clusters;
- info->free_clusters = info->num_clusters - info->UsedClusters;
+ info->used_clusters = p_fs->used_clusters;
+ info->free_clusters = info->num_clusters - info->used_clusters;
if (p_fs->dev_ejected)
err = -EIO;
@@ -3348,8 +3348,8 @@ static int exfat_statfs(struct dentry *dentry, struct kstatfs *buf)
info.fat_type = p_fs->vol_type;
info.cluster_size = p_fs->cluster_size;
info.num_clusters = p_fs->num_clusters - 2;
- info.UsedClusters = p_fs->used_clusters;
- info.free_clusters = info.num_clusters - info.UsedClusters;
+ info.used_clusters = p_fs->used_clusters;
+ info.free_clusters = info.num_clusters - info.used_clusters;
if (p_fs->dev_ejected)
pr_info("[EXFAT] statfs on device that is ejected\n");
--
2.17.1
Powered by blists - more mailing lists