rtc_time_to_tm() and rtc_tm_to_time() are deprecated because they
rely on 32bits variables and that will make rtc break in y2038/2016.
Stop using those two functions to safer 64bits ones.

Signed-off-by: Benjamin Gaignard <[email protected]>
CC: Alessandro Zummo <[email protected]>
CC: Alexandre Belloni <[email protected]>
CC: [email protected]
CC: [email protected]
---
 drivers/rtc/rtc-vr41xx.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/rtc/rtc-vr41xx.c b/drivers/rtc/rtc-vr41xx.c
index e1b86bb..db51ed6 100644
--- a/drivers/rtc/rtc-vr41xx.c
+++ b/drivers/rtc/rtc-vr41xx.c
@@ -138,12 +138,12 @@ static void vr41xx_rtc_release(struct device *dev)
 
 static int vr41xx_rtc_read_time(struct device *dev, struct rtc_time *time)
 {
-       unsigned long epoch_sec, elapsed_sec;
+       unsigned long long epoch_sec, elapsed_sec;
 
        epoch_sec = mktime(epoch, 1, 1, 0, 0, 0);
        elapsed_sec = read_elapsed_second();
 
-       rtc_time_to_tm(epoch_sec + elapsed_sec, time);
+       rtc_time64_to_tm(epoch_sec + elapsed_sec, time);
 
        return 0;
 }
@@ -175,7 +175,7 @@ static int vr41xx_rtc_read_alarm(struct device *dev, struct 
rtc_wkalrm *wkalrm)
 
        spin_unlock_irq(&rtc_lock);
 
-       rtc_time_to_tm((high << 17) | (mid << 1) | (low >> 15), time);
+       rtc_time64_to_tm((high << 17) | (mid << 1) | (low >> 15), time);
 
        return 0;
 }
-- 
1.9.1

Reply via email to