mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00:00
rtc: fsl-ftm-alarm: switch to ktime_get_real_seconds
The driver drops the nanoseconds part of the timespec64, there is no need to call ktime_get_real_ts64. Link: https://lore.kernel.org/r/20191016201223.30568-2-alexandre.belloni@bootlin.com Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
This commit is contained in:
parent
62409933b8
commit
db2a4af115
1 changed files with 1 additions and 4 deletions
|
@ -180,10 +180,7 @@ static int ftm_rtc_alarm_irq_enable(struct device *dev,
|
|||
*/
|
||||
static int ftm_rtc_read_time(struct device *dev, struct rtc_time *tm)
|
||||
{
|
||||
struct timespec64 ts64;
|
||||
|
||||
ktime_get_real_ts64(&ts64);
|
||||
rtc_time_to_tm(ts64.tv_sec, tm);
|
||||
rtc_time_to_tm(ktime_get_real_seconds(), tm);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue