rtc: drop set_mms and set_mmss64

There are no users of set_mms and set_mmss64 as they have all been
converted to set_time and are handling the tm to time conversion on their
own.

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
This commit is contained in:
Alexandre Belloni
2019-04-30 16:16:51 +02:00
parent f5fae39566
commit a01ab0669d
3 changed files with 1 additions and 13 deletions

View File

@@ -145,12 +145,6 @@ int rtc_set_time(struct rtc_device *rtc, struct rtc_time *tm)
err = -ENODEV;
else if (rtc->ops->set_time)
err = rtc->ops->set_time(rtc->dev.parent, tm);
else if (rtc->ops->set_mmss64)
err = rtc->ops->set_mmss64(rtc->dev.parent,
rtc_tm_to_time64(tm));
else if (rtc->ops->set_mmss)
err = rtc->ops->set_mmss(rtc->dev.parent,
rtc_tm_to_time64(tm));
else
err = -EINVAL;