rtc: pm8xxx: stop validating valid alarm time
rtc_time64_to_tm never generates an invalid rtc_tm, stop validating it. Link: https://lore.kernel.org/r/20200306073758.58050-4-alexandre.belloni@bootlin.com Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
This commit is contained in:
parent
4c470b2f12
commit
c47cf9d6bb
|
@ -282,12 +282,6 @@ static int pm8xxx_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alarm)
|
|||
|
||||
rtc_time64_to_tm(secs, &alarm->time);
|
||||
|
||||
rc = rtc_valid_tm(&alarm->time);
|
||||
if (rc < 0) {
|
||||
dev_err(dev, "Invalid alarm time read from RTC\n");
|
||||
return rc;
|
||||
}
|
||||
|
||||
dev_dbg(dev, "Alarm set for - h:m:s=%ptRt, y-m-d=%ptRdr\n",
|
||||
&alarm->time, &alarm->time);
|
||||
|
||||
|
|
Loading…
Reference in New Issue