summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPragat Pandya <pragat.pandya@gmail.com>2020-02-11 00:05:41 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-02-11 11:25:04 -0800
commit7904b260f9da37b5d441a3ad5acdb019f2976cfc (patch)
treedc4bc867d890b7c7ee82ec68feb2eace82fb3212
parent98e5df86e564ca4a93e409fd4fd1bfc59c39ad9f (diff)
staging: exfat: Rename variable 'Month' to 'month'
Fix checkpatch warning: Avoid CamelCase Change all occurrences of identifier "Month" to "month" Signed-off-by: Pragat Pandya <pragat.pandya@gmail.com> Link: https://lore.kernel.org/r/20200210183558.11836-3-pragat.pandya@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/exfat/exfat.h2
-rw-r--r--drivers/staging/exfat/exfat_super.c20
2 files changed, 11 insertions, 11 deletions
diff --git a/drivers/staging/exfat/exfat.h b/drivers/staging/exfat/exfat.h
index f6debe0405b9..0f66277ba885 100644
--- a/drivers/staging/exfat/exfat.h
+++ b/drivers/staging/exfat/exfat.h
@@ -223,7 +223,7 @@ static inline u16 get_row_index(u16 i)
struct date_time_t {
u16 year;
- u16 Month;
+ u16 month;
u16 Day;
u16 Hour;
u16 Minute;
diff --git a/drivers/staging/exfat/exfat_super.c b/drivers/staging/exfat/exfat_super.c
index 90c7a6b504c7..df8cf6cb7546 100644
--- a/drivers/staging/exfat/exfat_super.c
+++ b/drivers/staging/exfat/exfat_super.c
@@ -59,7 +59,7 @@ static void exfat_write_super(struct super_block *sb);
/* Convert a FAT time/date pair to a UNIX date (seconds since 1 1 70). */
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,
+ 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;
@@ -79,7 +79,7 @@ static void exfat_time_unix2fat(struct timespec64 *ts, struct date_time_t *tp)
tp->Minute = 0;
tp->Hour = 0;
tp->Day = 1;
- tp->Month = 1;
+ tp->month = 1;
tp->year = 0;
return;
}
@@ -90,7 +90,7 @@ static void exfat_time_unix2fat(struct timespec64 *ts, struct date_time_t *tp)
tp->Minute = 59;
tp->Hour = 23;
tp->Day = 31;
- tp->Month = 12;
+ tp->month = 12;
tp->year = 127;
return;
}
@@ -100,7 +100,7 @@ static void exfat_time_unix2fat(struct timespec64 *ts, struct date_time_t *tp)
tp->Minute = tm.tm_min;
tp->Hour = tm.tm_hour;
tp->Day = tm.tm_mday;
- tp->Month = tm.tm_mon + 1;
+ tp->month = tm.tm_mon + 1;
tp->year = tm.tm_year + 1900 - 1980;
}
@@ -1498,7 +1498,7 @@ static int ffsReadStat(struct inode *inode, struct dir_entry_t *info)
exfat_get_entry_time(ep, &tm, TM_CREATE);
info->CreateTimestamp.year = tm.year;
- info->CreateTimestamp.Month = tm.mon;
+ info->CreateTimestamp.month = tm.mon;
info->CreateTimestamp.Day = tm.day;
info->CreateTimestamp.Hour = tm.hour;
info->CreateTimestamp.Minute = tm.min;
@@ -1507,7 +1507,7 @@ static int ffsReadStat(struct inode *inode, struct dir_entry_t *info)
exfat_get_entry_time(ep, &tm, TM_MODIFY);
info->ModifyTimestamp.year = tm.year;
- info->ModifyTimestamp.Month = tm.mon;
+ info->ModifyTimestamp.month = tm.mon;
info->ModifyTimestamp.Day = tm.day;
info->ModifyTimestamp.Hour = tm.hour;
info->ModifyTimestamp.Minute = tm.min;
@@ -1601,7 +1601,7 @@ static int ffsWriteStat(struct inode *inode, struct dir_entry_t *info)
tm.min = info->CreateTimestamp.Minute;
tm.hour = info->CreateTimestamp.Hour;
tm.day = info->CreateTimestamp.Day;
- tm.mon = info->CreateTimestamp.Month;
+ tm.mon = info->CreateTimestamp.month;
tm.year = info->CreateTimestamp.year;
exfat_set_entry_time(ep, &tm, TM_CREATE);
@@ -1609,7 +1609,7 @@ static int ffsWriteStat(struct inode *inode, struct dir_entry_t *info)
tm.min = info->ModifyTimestamp.Minute;
tm.hour = info->ModifyTimestamp.Hour;
tm.day = info->ModifyTimestamp.Day;
- tm.mon = info->ModifyTimestamp.Month;
+ tm.mon = info->ModifyTimestamp.month;
tm.year = info->ModifyTimestamp.year;
exfat_set_entry_time(ep, &tm, TM_MODIFY);
@@ -1915,7 +1915,7 @@ static int ffsReadDir(struct inode *inode, struct dir_entry_t *dir_entry)
exfat_get_entry_time(ep, &tm, TM_CREATE);
dir_entry->CreateTimestamp.year = tm.year;
- dir_entry->CreateTimestamp.Month = tm.mon;
+ dir_entry->CreateTimestamp.month = tm.mon;
dir_entry->CreateTimestamp.Day = tm.day;
dir_entry->CreateTimestamp.Hour = tm.hour;
dir_entry->CreateTimestamp.Minute = tm.min;
@@ -1924,7 +1924,7 @@ static int ffsReadDir(struct inode *inode, struct dir_entry_t *dir_entry)
exfat_get_entry_time(ep, &tm, TM_MODIFY);
dir_entry->ModifyTimestamp.year = tm.year;
- dir_entry->ModifyTimestamp.Month = tm.mon;
+ dir_entry->ModifyTimestamp.month = tm.mon;
dir_entry->ModifyTimestamp.Day = tm.day;
dir_entry->ModifyTimestamp.Hour = tm.hour;
dir_entry->ModifyTimestamp.Minute = tm.min;