diff options
author | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2020-03-06 01:59:10 +0100 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2020-03-16 11:12:09 +0100 |
commit | 326bce078a6a8b04266a816e63f6f9e74ed98457 (patch) | |
tree | 71167e6ba9a79c315a82db64df11053feed775cd | |
parent | 166b13325c5b9cfcd58954a12a0734f316d55b60 (diff) | |
download | linux-326bce078a6a8b04266a816e63f6f9e74ed98457.tar.gz linux-326bce078a6a8b04266a816e63f6f9e74ed98457.tar.bz2 linux-326bce078a6a8b04266a816e63f6f9e74ed98457.zip |
rtc: starfire: switch to rtc_time64_to_tm
Call the 64bit version of rtc_tm time conversion.
Link: https://lore.kernel.org/r/20200306005910.38939-2-alexandre.belloni@bootlin.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
-rw-r--r-- | drivers/rtc/rtc-starfire.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-starfire.c b/drivers/rtc/rtc-starfire.c index f21f4f961f3a..37a26279e107 100644 --- a/drivers/rtc/rtc-starfire.c +++ b/drivers/rtc/rtc-starfire.c @@ -27,7 +27,7 @@ static u32 starfire_get_time(void) static int starfire_read_time(struct device *dev, struct rtc_time *tm) { - rtc_time_to_tm(starfire_get_time(), tm); + rtc_time64_to_tm(starfire_get_time(), tm); return 0; } |