Re: [PATCH 1/2] drivers/rtc/interface.c: Change rtc_set_mmss() to use time64_t

2015-05-15 Thread John Stultz
On Fri, May 15, 2015 at 2:31 AM, Xunlei Pang wrote: > From: Xunlei Pang > > rtc_set_mmss() uses "unsigned long" as its second parameter which > may have y2038 problem on 32-bit systems. > > Change it to use time64_t. > > All its call sites will be changed later(there are no problems > leaving the

[PATCH 1/2] drivers/rtc/interface.c: Change rtc_set_mmss() to use time64_t

2015-05-15 Thread Xunlei Pang
From: Xunlei Pang rtc_set_mmss() uses "unsigned long" as its second parameter which may have y2038 problem on 32-bit systems. Change it to use time64_t. All its call sites will be changed later(there are no problems leaving these call sites untouched). Signed-off-by: Xunlei Pang --- drivers/