Fix checkpatch warning: Avoid CamelCase
Change all occurrences of identifier "UsedClusters" to "used_clusters"

Signed-off-by: Pragat Pandya <pragat.pan...@gmail.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

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to