summaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-max77686.c
diff options
context:
space:
mode:
authorSachin Kamat2013-07-04 00:05:55 +0200
committerLinus Torvalds2013-07-04 01:07:47 +0200
commitcdf5f4ac63785e48d93137566d003d6c839b1259 (patch)
tree4422b4987a8977d687549560c7030029966b5883 /drivers/rtc/rtc-max77686.c
parentdrivers/rtc/rtc-max6902.c: remove unwanted spaces (diff)
downloadkernel-qcow2-linux-cdf5f4ac63785e48d93137566d003d6c839b1259.tar.gz
kernel-qcow2-linux-cdf5f4ac63785e48d93137566d003d6c839b1259.tar.xz
kernel-qcow2-linux-cdf5f4ac63785e48d93137566d003d6c839b1259.zip
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-max77686.c b/drivers/rtc/rtc-max77686.c
index 771812d62e6b..441c5c2e0bfc 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."