From: Xunlei Pang <pang.xunlei@xxxxxxxxxx> 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 <pang.xunlei@xxxxxxxxxx> --- drivers/rtc/interface.c | 2 +- include/linux/rtc.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/rtc/interface.c b/drivers/rtc/interface.c index d43ee40..480ee3c 100644 --- a/drivers/rtc/interface.c +++ b/drivers/rtc/interface.c @@ -90,7 +90,7 @@ int rtc_set_time(struct rtc_device *rtc, struct rtc_time *tm) } EXPORT_SYMBOL_GPL(rtc_set_time); -int rtc_set_mmss(struct rtc_device *rtc, unsigned long secs) +int rtc_set_mmss(struct rtc_device *rtc, time64_t secs) { int err; diff --git a/include/linux/rtc.h b/include/linux/rtc.h index 8dcf682..9c3180e 100644 --- a/include/linux/rtc.h +++ b/include/linux/rtc.h @@ -161,7 +161,7 @@ extern void devm_rtc_device_unregister(struct device *dev, extern int rtc_read_time(struct rtc_device *rtc, struct rtc_time *tm); extern int rtc_set_time(struct rtc_device *rtc, struct rtc_time *tm); -extern int rtc_set_mmss(struct rtc_device *rtc, unsigned long secs); +extern int rtc_set_mmss(struct rtc_device *rtc, time64_t secs); extern int rtc_set_ntp_time(struct timespec64 now); int __rtc_read_alarm(struct rtc_device *rtc, struct rtc_wkalrm *alarm); extern int rtc_read_alarm(struct rtc_device *rtc, -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html