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

staging: exfat: Rename variable 'MilliSecond' to 'millisecond'



Fix checkpatch warning: Avoid CamelCase
Change all occurrences of identifier "MilliSecond" to "millisecond"

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


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

struct vol_info_t {
+8 −8
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ 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);

	ts->tv_nsec = tp->MilliSecond * NSEC_PER_MSEC;
	ts->tv_nsec = tp->millisecond * NSEC_PER_MSEC;
}

/* Convert linear UNIX date to a FAT time/date pair. */
@@ -74,7 +74,7 @@ static void exfat_time_unix2fat(struct timespec64 *ts, struct date_time_t *tp)
	time64_to_tm(second, 0, &tm);

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

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

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

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

	memset((char *)&info->AccessTimestamp, 0, sizeof(struct date_time_t));

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

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

			memset((char *)&dir_entry->AccessTimestamp, 0,
			       sizeof(struct date_time_t));