OSDN Git Service

rtc: dm355evm: switch to rtc_time64_to_tm/rtc_tm_to_time64
authorAlexandre Belloni <alexandre.belloni@bootlin.com>
Wed, 20 Mar 2019 12:43:34 +0000 (13:43 +0100)
committerAlexandre Belloni <alexandre.belloni@bootlin.com>
Thu, 4 Apr 2019 08:07:09 +0000 (10:07 +0200)
Call the 64bit versions of rtc_tm time conversion as the range is enforced
by the core.

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
drivers/rtc/rtc-dm355evm.c

index cd80c89..3fee96c 100644 (file)
@@ -78,7 +78,7 @@ static int dm355evm_rtc_read_time(struct device *dev, struct rtc_time *tm)
 
        dev_dbg(dev, "read timestamp %08x\n", time.value);
 
-       rtc_time_to_tm(le32_to_cpu(time.value), tm);
+       rtc_time64_to_tm(le32_to_cpu(time.value), tm);
        return 0;
 }
 
@@ -88,7 +88,7 @@ static int dm355evm_rtc_set_time(struct device *dev, struct rtc_time *tm)
        unsigned long   value;
        int             status;
 
-       rtc_tm_to_time(tm, &value);
+       value = rtc_tm_to_time64(tm);
        time.value = cpu_to_le32(value);
 
        dev_dbg(dev, "write timestamp %08x\n", time.value);