Commit ac4db9ac authored by Pragat Pandya's avatar Pragat Pandya Committed by Greg Kroah-Hartman
Browse files

staging: exfat: Rename variable 'Second' to 'second'



Fix checkpatch warning: Avoid CamelCase
Change all occurrences of identifier "Second" to "second"

Signed-off-by: default avatarPragat Pandya <pragat.pandya@gmail.com>
Link: https://lore.kernel.org/r/20200210183558.11836-7-pragat.pandya@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 56a2ba5a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -227,7 +227,7 @@ struct date_time_t {
	u16      day;
	u16      hour;
	u16      minute;
	u16      Second;
	u16      second;
	u16      MilliSecond;
};

+10 −10
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ static void exfat_write_super(struct super_block *sb);
static void exfat_time_fat2unix(struct timespec64 *ts, struct date_time_t *tp)
{
	ts->tv_sec = mktime64(tp->year + 1980, tp->month + 1, tp->day,
			      tp->hour, tp->minute, tp->Second);
			      tp->hour, tp->minute, tp->second);

	ts->tv_nsec = tp->MilliSecond * NSEC_PER_MSEC;
}
@@ -75,7 +75,7 @@ static void exfat_time_unix2fat(struct timespec64 *ts, struct date_time_t *tp)

	if (second < UNIX_SECS_1980) {
		tp->MilliSecond = 0;
		tp->Second	= 0;
		tp->second	= 0;
		tp->minute	= 0;
		tp->hour	= 0;
		tp->day		= 1;
@@ -86,7 +86,7 @@ static void exfat_time_unix2fat(struct timespec64 *ts, struct date_time_t *tp)

	if (second >= UNIX_SECS_2108) {
		tp->MilliSecond = 999;
		tp->Second	= 59;
		tp->second	= 59;
		tp->minute	= 59;
		tp->hour	= 23;
		tp->day		= 31;
@@ -96,7 +96,7 @@ static void exfat_time_unix2fat(struct timespec64 *ts, struct date_time_t *tp)
	}

	tp->MilliSecond = ts->tv_nsec / NSEC_PER_MSEC;
	tp->Second	= tm.tm_sec;
	tp->second	= tm.tm_sec;
	tp->minute	= tm.tm_min;
	tp->hour	= tm.tm_hour;
	tp->day		= tm.tm_mday;
@@ -1502,7 +1502,7 @@ static int ffsReadStat(struct inode *inode, struct dir_entry_t *info)
	info->CreateTimestamp.day = tm.day;
	info->CreateTimestamp.hour = tm.hour;
	info->CreateTimestamp.minute = tm.min;
	info->CreateTimestamp.Second = tm.sec;
	info->CreateTimestamp.second = tm.sec;
	info->CreateTimestamp.MilliSecond = 0;

	exfat_get_entry_time(ep, &tm, TM_MODIFY);
@@ -1511,7 +1511,7 @@ static int ffsReadStat(struct inode *inode, struct dir_entry_t *info)
	info->ModifyTimestamp.day = tm.day;
	info->ModifyTimestamp.hour = tm.hour;
	info->ModifyTimestamp.minute = tm.min;
	info->ModifyTimestamp.Second = tm.sec;
	info->ModifyTimestamp.second = tm.sec;
	info->ModifyTimestamp.MilliSecond = 0;

	memset((char *)&info->AccessTimestamp, 0, sizeof(struct date_time_t));
@@ -1597,7 +1597,7 @@ static int ffsWriteStat(struct inode *inode, struct dir_entry_t *info)
	exfat_set_entry_attr(ep, info->Attr);

	/* set FILE_INFO structure using the acquired struct dentry_t */
	tm.sec  = info->CreateTimestamp.Second;
	tm.sec  = info->CreateTimestamp.second;
	tm.min  = info->CreateTimestamp.minute;
	tm.hour = info->CreateTimestamp.hour;
	tm.day  = info->CreateTimestamp.day;
@@ -1605,7 +1605,7 @@ static int ffsWriteStat(struct inode *inode, struct dir_entry_t *info)
	tm.year = info->CreateTimestamp.year;
	exfat_set_entry_time(ep, &tm, TM_CREATE);

	tm.sec  = info->ModifyTimestamp.Second;
	tm.sec  = info->ModifyTimestamp.second;
	tm.min  = info->ModifyTimestamp.minute;
	tm.hour = info->ModifyTimestamp.hour;
	tm.day  = info->ModifyTimestamp.day;
@@ -1919,7 +1919,7 @@ static int ffsReadDir(struct inode *inode, struct dir_entry_t *dir_entry)
			dir_entry->CreateTimestamp.day = tm.day;
			dir_entry->CreateTimestamp.hour = tm.hour;
			dir_entry->CreateTimestamp.minute = tm.min;
			dir_entry->CreateTimestamp.Second = tm.sec;
			dir_entry->CreateTimestamp.second = tm.sec;
			dir_entry->CreateTimestamp.MilliSecond = 0;

			exfat_get_entry_time(ep, &tm, TM_MODIFY);
@@ -1928,7 +1928,7 @@ static int ffsReadDir(struct inode *inode, struct dir_entry_t *dir_entry)
			dir_entry->ModifyTimestamp.day = tm.day;
			dir_entry->ModifyTimestamp.hour = tm.hour;
			dir_entry->ModifyTimestamp.minute = tm.min;
			dir_entry->ModifyTimestamp.Second = tm.sec;
			dir_entry->ModifyTimestamp.second = tm.sec;
			dir_entry->ModifyTimestamp.MilliSecond = 0;

			memset((char *)&dir_entry->AccessTimestamp, 0,