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

staging: exfat: Rename variable 'CreateTimestamp' to 'create_timestamp'

Fix checkpatch warning: Avoid CamelCase
Change all occurrences of identifier "CreateTimestamp" to
"create_timestamp"
Signed-off-by: default avatarPragat Pandya <pragat.pandya@gmail.com>
Link: https://lore.kernel.org/r/20200210183558.11836-18-pragat.pandya@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 439968b7
...@@ -268,7 +268,7 @@ struct dir_entry_t { ...@@ -268,7 +268,7 @@ struct dir_entry_t {
u32 attr; u32 attr;
u64 Size; u64 Size;
u32 num_subdirs; u32 num_subdirs;
struct date_time_t CreateTimestamp; struct date_time_t create_timestamp;
struct date_time_t ModifyTimestamp; struct date_time_t ModifyTimestamp;
struct date_time_t AccessTimestamp; struct date_time_t AccessTimestamp;
}; };
......
...@@ -1450,7 +1450,7 @@ static int ffsReadStat(struct inode *inode, struct dir_entry_t *info) ...@@ -1450,7 +1450,7 @@ static int ffsReadStat(struct inode *inode, struct dir_entry_t *info)
if ((fid->dir.dir == p_fs->root_dir) && if ((fid->dir.dir == p_fs->root_dir) &&
(fid->entry == -1)) { (fid->entry == -1)) {
info->attr = ATTR_SUBDIR; info->attr = ATTR_SUBDIR;
memset((char *)&info->CreateTimestamp, 0, memset((char *)&info->create_timestamp, 0,
sizeof(struct date_time_t)); sizeof(struct date_time_t));
memset((char *)&info->ModifyTimestamp, 0, memset((char *)&info->ModifyTimestamp, 0,
sizeof(struct date_time_t)); sizeof(struct date_time_t));
...@@ -1497,13 +1497,13 @@ static int ffsReadStat(struct inode *inode, struct dir_entry_t *info) ...@@ -1497,13 +1497,13 @@ static int ffsReadStat(struct inode *inode, struct dir_entry_t *info)
info->attr = exfat_get_entry_attr(ep); info->attr = exfat_get_entry_attr(ep);
exfat_get_entry_time(ep, &tm, TM_CREATE); exfat_get_entry_time(ep, &tm, TM_CREATE);
info->CreateTimestamp.year = tm.year; info->create_timestamp.year = tm.year;
info->CreateTimestamp.month = tm.mon; info->create_timestamp.month = tm.mon;
info->CreateTimestamp.day = tm.day; info->create_timestamp.day = tm.day;
info->CreateTimestamp.hour = tm.hour; info->create_timestamp.hour = tm.hour;
info->CreateTimestamp.minute = tm.min; info->create_timestamp.minute = tm.min;
info->CreateTimestamp.second = tm.sec; info->create_timestamp.second = tm.sec;
info->CreateTimestamp.millisecond = 0; info->create_timestamp.millisecond = 0;
exfat_get_entry_time(ep, &tm, TM_MODIFY); exfat_get_entry_time(ep, &tm, TM_MODIFY);
info->ModifyTimestamp.year = tm.year; info->ModifyTimestamp.year = tm.year;
...@@ -1597,12 +1597,12 @@ static int ffsWriteStat(struct inode *inode, struct dir_entry_t *info) ...@@ -1597,12 +1597,12 @@ static int ffsWriteStat(struct inode *inode, struct dir_entry_t *info)
exfat_set_entry_attr(ep, info->attr); exfat_set_entry_attr(ep, info->attr);
/* set FILE_INFO structure using the acquired struct dentry_t */ /* set FILE_INFO structure using the acquired struct dentry_t */
tm.sec = info->CreateTimestamp.second; tm.sec = info->create_timestamp.second;
tm.min = info->CreateTimestamp.minute; tm.min = info->create_timestamp.minute;
tm.hour = info->CreateTimestamp.hour; tm.hour = info->create_timestamp.hour;
tm.day = info->CreateTimestamp.day; tm.day = info->create_timestamp.day;
tm.mon = info->CreateTimestamp.month; tm.mon = info->create_timestamp.month;
tm.year = info->CreateTimestamp.year; tm.year = info->create_timestamp.year;
exfat_set_entry_time(ep, &tm, TM_CREATE); exfat_set_entry_time(ep, &tm, TM_CREATE);
tm.sec = info->ModifyTimestamp.second; tm.sec = info->ModifyTimestamp.second;
...@@ -1914,13 +1914,13 @@ static int ffsReadDir(struct inode *inode, struct dir_entry_t *dir_entry) ...@@ -1914,13 +1914,13 @@ static int ffsReadDir(struct inode *inode, struct dir_entry_t *dir_entry)
dir_entry->attr = exfat_get_entry_attr(ep); dir_entry->attr = exfat_get_entry_attr(ep);
exfat_get_entry_time(ep, &tm, TM_CREATE); exfat_get_entry_time(ep, &tm, TM_CREATE);
dir_entry->CreateTimestamp.year = tm.year; dir_entry->create_timestamp.year = tm.year;
dir_entry->CreateTimestamp.month = tm.mon; dir_entry->create_timestamp.month = tm.mon;
dir_entry->CreateTimestamp.day = tm.day; dir_entry->create_timestamp.day = tm.day;
dir_entry->CreateTimestamp.hour = tm.hour; dir_entry->create_timestamp.hour = tm.hour;
dir_entry->CreateTimestamp.minute = tm.min; dir_entry->create_timestamp.minute = tm.min;
dir_entry->CreateTimestamp.second = tm.sec; dir_entry->create_timestamp.second = tm.sec;
dir_entry->CreateTimestamp.millisecond = 0; dir_entry->create_timestamp.millisecond = 0;
exfat_get_entry_time(ep, &tm, TM_MODIFY); exfat_get_entry_time(ep, &tm, TM_MODIFY);
dir_entry->ModifyTimestamp.year = tm.year; dir_entry->ModifyTimestamp.year = tm.year;
...@@ -3171,7 +3171,7 @@ static int exfat_fill_inode(struct inode *inode, struct file_id_t *fid) ...@@ -3171,7 +3171,7 @@ static int exfat_fill_inode(struct inode *inode, struct file_id_t *fid)
& ~((loff_t)p_fs->cluster_size - 1)) >> 9; & ~((loff_t)p_fs->cluster_size - 1)) >> 9;
exfat_time_fat2unix(&inode->i_mtime, &info.ModifyTimestamp); exfat_time_fat2unix(&inode->i_mtime, &info.ModifyTimestamp);
exfat_time_fat2unix(&inode->i_ctime, &info.CreateTimestamp); exfat_time_fat2unix(&inode->i_ctime, &info.create_timestamp);
exfat_time_fat2unix(&inode->i_atime, &info.AccessTimestamp); exfat_time_fat2unix(&inode->i_atime, &info.AccessTimestamp);
return 0; return 0;
...@@ -3242,7 +3242,7 @@ static int exfat_write_inode(struct inode *inode, struct writeback_control *wbc) ...@@ -3242,7 +3242,7 @@ static int exfat_write_inode(struct inode *inode, struct writeback_control *wbc)
info.Size = i_size_read(inode); info.Size = i_size_read(inode);
exfat_time_unix2fat(&inode->i_mtime, &info.ModifyTimestamp); exfat_time_unix2fat(&inode->i_mtime, &info.ModifyTimestamp);
exfat_time_unix2fat(&inode->i_ctime, &info.CreateTimestamp); exfat_time_unix2fat(&inode->i_ctime, &info.create_timestamp);
exfat_time_unix2fat(&inode->i_atime, &info.AccessTimestamp); exfat_time_unix2fat(&inode->i_atime, &info.AccessTimestamp);
ffsWriteStat(inode, &info); ffsWriteStat(inode, &info);
......
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