drivers/rtc/rtc-rs5c313.c: fix spacing related issues
Fixes the following types of checkpatch issues: WARNING: please, no space before tabs ERROR: space prohibited after that open parenthesis '(' ERROR: space prohibited before that close parenthesis ')' ERROR: need consistent spacing around '>>' (ctx:VxW) 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>
This commit is contained in:
parent
91b80e4c38
commit
675090fa84
|
@ -301,7 +301,7 @@ static int rs5c313_rtc_set_time(struct device *dev, struct rtc_time *tm)
|
|||
rs5c313_write_reg(RS5C313_ADDR_SEC10, (data >> 4));
|
||||
|
||||
data = bin2bcd(tm->tm_min);
|
||||
rs5c313_write_reg(RS5C313_ADDR_MIN, data );
|
||||
rs5c313_write_reg(RS5C313_ADDR_MIN, data);
|
||||
rs5c313_write_reg(RS5C313_ADDR_MIN10, (data >> 4));
|
||||
|
||||
data = bin2bcd(tm->tm_hour);
|
||||
|
@ -310,7 +310,7 @@ static int rs5c313_rtc_set_time(struct device *dev, struct rtc_time *tm)
|
|||
|
||||
data = bin2bcd(tm->tm_mday);
|
||||
rs5c313_write_reg(RS5C313_ADDR_DAY, data);
|
||||
rs5c313_write_reg(RS5C313_ADDR_DAY10, (data>> 4));
|
||||
rs5c313_write_reg(RS5C313_ADDR_DAY10, (data >> 4));
|
||||
|
||||
data = bin2bcd(tm->tm_mon + 1);
|
||||
rs5c313_write_reg(RS5C313_ADDR_MON, data);
|
||||
|
@ -408,7 +408,7 @@ static int __init rs5c313_rtc_init(void)
|
|||
|
||||
static void __exit rs5c313_rtc_exit(void)
|
||||
{
|
||||
platform_driver_unregister( &rs5c313_rtc_platform_driver );
|
||||
platform_driver_unregister(&rs5c313_rtc_platform_driver);
|
||||
}
|
||||
|
||||
module_init(rs5c313_rtc_init);
|
||||
|
|
Loading…
Reference in New Issue