staging: exfat: Rename variable 'Year' to 'year'
authorPragat Pandya <pragat.pandya@gmail.com>
Mon, 10 Feb 2020 18:35:40 +0000 (00:05 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 11 Feb 2020 19:25:04 +0000 (11:25 -0800)
Fix checkpatch warning: Avoid CamelCase
Change all occurrences of identifier "Year" to "year"

Signed-off-by: Pragat Pandya <pragat.pandya@gmail.com>
Link: https://lore.kernel.org/r/20200210183558.11836-2-pragat.pandya@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/exfat/exfat.h
drivers/staging/exfat/exfat_super.c

index e340b36..f6debe0 100644 (file)
@@ -222,7 +222,7 @@ static inline u16 get_row_index(u16 i)
 #endif
 
 struct date_time_t {
-       u16      Year;
+       u16      year;
        u16      Month;
        u16      Day;
        u16      Hour;
index 7abe76b..90c7a6b 100644 (file)
@@ -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;
@@ -80,7 +80,7 @@ static void exfat_time_unix2fat(struct timespec64 *ts, struct date_time_t *tp)
                tp->Hour        = 0;
                tp->Day         = 1;
                tp->Month       = 1;
-               tp->Year        = 0;
+               tp->year        = 0;
                return;
        }
 
@@ -91,7 +91,7 @@ static void exfat_time_unix2fat(struct timespec64 *ts, struct date_time_t *tp)
                tp->Hour        = 23;
                tp->Day         = 31;
                tp->Month       = 12;
-               tp->Year        = 127;
+               tp->year        = 127;
                return;
        }
 
@@ -101,7 +101,7 @@ static void exfat_time_unix2fat(struct timespec64 *ts, struct date_time_t *tp)
        tp->Hour        = tm.tm_hour;
        tp->Day         = tm.tm_mday;
        tp->Month       = tm.tm_mon + 1;
-       tp->Year        = tm.tm_year + 1900 - 1980;
+       tp->year        = tm.tm_year + 1900 - 1980;
 }
 
 struct timestamp_t *tm_current(struct timestamp_t *tp)
@@ -1497,7 +1497,7 @@ static int ffsReadStat(struct inode *inode, struct dir_entry_t *info)
        info->Attr = exfat_get_entry_attr(ep);
 
        exfat_get_entry_time(ep, &tm, TM_CREATE);
-       info->CreateTimestamp.Year = tm.year;
+       info->CreateTimestamp.year = tm.year;
        info->CreateTimestamp.Month = tm.mon;
        info->CreateTimestamp.Day = tm.day;
        info->CreateTimestamp.Hour = tm.hour;
@@ -1506,7 +1506,7 @@ static int ffsReadStat(struct inode *inode, struct dir_entry_t *info)
        info->CreateTimestamp.MilliSecond = 0;
 
        exfat_get_entry_time(ep, &tm, TM_MODIFY);
-       info->ModifyTimestamp.Year = tm.year;
+       info->ModifyTimestamp.year = tm.year;
        info->ModifyTimestamp.Month = tm.mon;
        info->ModifyTimestamp.Day = tm.day;
        info->ModifyTimestamp.Hour = tm.hour;
@@ -1602,7 +1602,7 @@ static int ffsWriteStat(struct inode *inode, struct dir_entry_t *info)
        tm.hour = info->CreateTimestamp.Hour;
        tm.day  = info->CreateTimestamp.Day;
        tm.mon  = info->CreateTimestamp.Month;
-       tm.year = info->CreateTimestamp.Year;
+       tm.year = info->CreateTimestamp.year;
        exfat_set_entry_time(ep, &tm, TM_CREATE);
 
        tm.sec  = info->ModifyTimestamp.Second;
@@ -1610,7 +1610,7 @@ static int ffsWriteStat(struct inode *inode, struct dir_entry_t *info)
        tm.hour = info->ModifyTimestamp.Hour;
        tm.day  = info->ModifyTimestamp.Day;
        tm.mon  = info->ModifyTimestamp.Month;
-       tm.year = info->ModifyTimestamp.Year;
+       tm.year = info->ModifyTimestamp.year;
        exfat_set_entry_time(ep, &tm, TM_MODIFY);
 
        exfat_set_entry_size(ep2, info->Size);
@@ -1914,7 +1914,7 @@ static int ffsReadDir(struct inode *inode, struct dir_entry_t *dir_entry)
                        dir_entry->Attr = exfat_get_entry_attr(ep);
 
                        exfat_get_entry_time(ep, &tm, TM_CREATE);
-                       dir_entry->CreateTimestamp.Year = tm.year;
+                       dir_entry->CreateTimestamp.year = tm.year;
                        dir_entry->CreateTimestamp.Month = tm.mon;
                        dir_entry->CreateTimestamp.Day = tm.day;
                        dir_entry->CreateTimestamp.Hour = tm.hour;
@@ -1923,7 +1923,7 @@ static int ffsReadDir(struct inode *inode, struct dir_entry_t *dir_entry)
                        dir_entry->CreateTimestamp.MilliSecond = 0;
 
                        exfat_get_entry_time(ep, &tm, TM_MODIFY);
-                       dir_entry->ModifyTimestamp.Year = tm.year;
+                       dir_entry->ModifyTimestamp.year = tm.year;
                        dir_entry->ModifyTimestamp.Month = tm.mon;
                        dir_entry->ModifyTimestamp.Day = tm.day;
                        dir_entry->ModifyTimestamp.Hour = tm.hour;