diff options
author | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2019-03-25 20:17:19 +0300 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2019-04-04 11:07:10 +0300 |
commit | 9a8f2d12ffaf323f12a2ca3208bc3d47b2d9ca58 (patch) | |
tree | 11254e4355f6e09d354dea0f2dd2110d825ab7f7 /drivers/rtc/rtc-brcmstb-waketimer.c | |
parent | 24db953e942bd7a983e97892bdaddf69d00b1199 (diff) | |
download | linux-9a8f2d12ffaf323f12a2ca3208bc3d47b2d9ca58.tar.xz |
rtc: brcmstb-waketimer: switch to rtc_time64_to_tm
Call the 64bit version of rtc_time_to_tm as the range is enforced by the
core.
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc/rtc-brcmstb-waketimer.c')
-rw-r--r-- | drivers/rtc/rtc-brcmstb-waketimer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-brcmstb-waketimer.c b/drivers/rtc/rtc-brcmstb-waketimer.c index f4010a75f2be..a193396a8140 100644 --- a/drivers/rtc/rtc-brcmstb-waketimer.c +++ b/drivers/rtc/rtc-brcmstb-waketimer.c @@ -132,7 +132,7 @@ static int brcmstb_waketmr_gettime(struct device *dev, wktmr_read(timer, &now); - rtc_time_to_tm(now.sec, tm); + rtc_time64_to_tm(now.sec, tm); return 0; } |