Fix checkpatch warning: Avoid CamelCase Change all occurrences of function "ffsUmountVol" to "ffs_umount_vol" in the source. Signed-off-by: Pragat Pandya <pragat.pandya@xxxxxxxxx> --- drivers/staging/exfat/exfat_super.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/exfat/exfat_super.c b/drivers/staging/exfat/exfat_super.c index b81d2a87b82e..1e47bfcebed5 100644 --- a/drivers/staging/exfat/exfat_super.c +++ b/drivers/staging/exfat/exfat_super.c @@ -439,7 +439,7 @@ static int ffsMountVol(struct super_block *sb) return ret; } -static int ffsUmountVol(struct super_block *sb) +static int ffs_umount_vol(struct super_block *sb) { struct fs_info_t *p_fs = &(EXFAT_SB(sb)->fs_info); int err = 0; @@ -3301,7 +3301,7 @@ static void exfat_put_super(struct super_block *sb) if (__is_sb_dirty(sb)) exfat_write_super(sb); - ffsUmountVol(sb); + ffs_umount_vol(sb); sb->s_fs_info = NULL; exfat_free_super(sbi); @@ -3753,7 +3753,7 @@ static int exfat_fill_super(struct super_block *sb, void *data, int silent) return 0; out_fail2: - ffsUmountVol(sb); + ffs_umount_vol(sb); out_fail: if (root_inode) iput(root_inode); -- 2.17.1