diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-07-03 15:05:55 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 16:07:47 -0700 |
commit | cdf5f4ac63785e48d93137566d003d6c839b1259 (patch) | |
tree | 4422b4987a8977d687549560c7030029966b5883 /drivers/rtc/rtc-max77686.c | |
parent | 83246a168d65a28f98bf71bb4e267dc5f131b12c (diff) | |
download | op-kernel-dev-cdf5f4ac63785e48d93137566d003d6c839b1259.zip op-kernel-dev-cdf5f4ac63785e48d93137566d003d6c839b1259.tar.gz |
drivers/rtc/rtc-max77686.c: remove space before semicolon
Fixes the following warning:
WARNING: space prohibited before semicolon
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/rtc/rtc-max77686.c')
-rw-r--r-- | drivers/rtc/rtc-max77686.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-max77686.c b/drivers/rtc/rtc-max77686.c index 771812d..441c5c2 100644 --- a/drivers/rtc/rtc-max77686.c +++ b/drivers/rtc/rtc-max77686.c @@ -119,7 +119,7 @@ static int max77686_rtc_tm_to_data(struct rtc_time *tm, u8 *data) data[RTC_WEEKDAY] = 1 << tm->tm_wday; data[RTC_DATE] = tm->tm_mday; data[RTC_MONTH] = tm->tm_mon + 1; - data[RTC_YEAR] = tm->tm_year > 100 ? (tm->tm_year - 100) : 0 ; + data[RTC_YEAR] = tm->tm_year > 100 ? (tm->tm_year - 100) : 0; if (tm->tm_year < 100) { pr_warn("%s: MAX77686 RTC cannot handle the year %d." |