mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
rtc: tx4939: switch to rtc_time64_to_tm/rtc_tm_to_time64
Call the 64bit versions of rtc_time_to_tm now that the range is enforced by the core. Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
This commit is contained in:
parent
e866cbdf6e
commit
e230b2c26d
1 changed files with 3 additions and 3 deletions
|
@ -111,7 +111,7 @@ static int tx4939_rtc_read_time(struct device *dev, struct rtc_time *tm)
|
||||||
spin_unlock_irq(&pdata->lock);
|
spin_unlock_irq(&pdata->lock);
|
||||||
sec = ((unsigned long)buf[5] << 24) | (buf[4] << 16) |
|
sec = ((unsigned long)buf[5] << 24) | (buf[4] << 16) |
|
||||||
(buf[3] << 8) | buf[2];
|
(buf[3] << 8) | buf[2];
|
||||||
rtc_time_to_tm(sec, tm);
|
rtc_time64_to_tm(sec, tm);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -123,7 +123,7 @@ static int tx4939_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
|
||||||
unsigned long sec;
|
unsigned long sec;
|
||||||
unsigned char buf[6];
|
unsigned char buf[6];
|
||||||
|
|
||||||
rtc_tm_to_time(&alrm->time, &sec);
|
sec = rtc_tm_to_time64(&alrm->time);
|
||||||
buf[0] = 0;
|
buf[0] = 0;
|
||||||
buf[1] = 0;
|
buf[1] = 0;
|
||||||
buf[2] = sec;
|
buf[2] = sec;
|
||||||
|
@ -166,7 +166,7 @@ static int tx4939_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
|
||||||
spin_unlock_irq(&pdata->lock);
|
spin_unlock_irq(&pdata->lock);
|
||||||
sec = ((unsigned long)buf[5] << 24) | (buf[4] << 16) |
|
sec = ((unsigned long)buf[5] << 24) | (buf[4] << 16) |
|
||||||
(buf[3] << 8) | buf[2];
|
(buf[3] << 8) | buf[2];
|
||||||
rtc_time_to_tm(sec, &alrm->time);
|
rtc_time64_to_tm(sec, &alrm->time);
|
||||||
return rtc_valid_tm(&alrm->time);
|
return rtc_valid_tm(&alrm->time);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue