Commit cc3edc28 authored by Pragat Pandya's avatar Pragat Pandya Committed by Greg Kroah-Hartman

staging: exfat: Rename variable 'ShortName' to 'short_name'

Fix checkpatch warning: Avoid CamelCase
Change all occurrences of identifier "ShortName" to "short_name"
Signed-off-by: default avatarPragat Pandya <pragat.pandya@gmail.com>
Link: https://lore.kernel.org/r/20200210183558.11836-15-pragat.pandya@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 731e7914
...@@ -263,7 +263,7 @@ struct dir_entry_t { ...@@ -263,7 +263,7 @@ struct dir_entry_t {
char name[MAX_NAME_LENGTH * MAX_CHARSET_SIZE]; char name[MAX_NAME_LENGTH * MAX_CHARSET_SIZE];
/* used only for FAT12/16/32, not used for exFAT */ /* used only for FAT12/16/32, not used for exFAT */
char ShortName[DOS_NAME_LENGTH + 2]; char short_name[DOS_NAME_LENGTH + 2];
u32 Attr; u32 Attr;
u64 Size; u64 Size;
......
...@@ -1456,7 +1456,7 @@ static int ffsReadStat(struct inode *inode, struct dir_entry_t *info) ...@@ -1456,7 +1456,7 @@ static int ffsReadStat(struct inode *inode, struct dir_entry_t *info)
sizeof(struct date_time_t)); sizeof(struct date_time_t));
memset((char *)&info->AccessTimestamp, 0, memset((char *)&info->AccessTimestamp, 0,
sizeof(struct date_time_t)); sizeof(struct date_time_t));
strcpy(info->ShortName, "."); strcpy(info->short_name, ".");
strcpy(info->name, "."); strcpy(info->name, ".");
dir.dir = p_fs->root_dir; dir.dir = p_fs->root_dir;
...@@ -2111,9 +2111,9 @@ static int exfat_readdir(struct file *filp, struct dir_context *ctx) ...@@ -2111,9 +2111,9 @@ static int exfat_readdir(struct file *filp, struct dir_context *ctx)
if (!de.name[0]) if (!de.name[0])
goto end_of_dir; goto end_of_dir;
if (!memcmp(de.ShortName, DOS_CUR_DIR_NAME, DOS_NAME_LENGTH)) { if (!memcmp(de.short_name, DOS_CUR_DIR_NAME, DOS_NAME_LENGTH)) {
inum = inode->i_ino; inum = inode->i_ino;
} else if (!memcmp(de.ShortName, DOS_PAR_DIR_NAME, DOS_NAME_LENGTH)) { } else if (!memcmp(de.short_name, DOS_PAR_DIR_NAME, DOS_NAME_LENGTH)) {
inum = parent_ino(filp->f_path.dentry); inum = parent_ino(filp->f_path.dentry);
} else { } else {
loff_t i_pos = ((loff_t)EXFAT_I(inode)->fid.start_clu << 32) | loff_t i_pos = ((loff_t)EXFAT_I(inode)->fid.start_clu << 32) |
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment