Skip to content

Commit

Permalink
rtc: jz4740: use .set_time
Browse files Browse the repository at this point in the history
Use .set_time instead of the deprecated .set_mmss.

Tested-by: Mathieu Malaterre <[email protected]>
Signed-off-by: Alexandre Belloni <[email protected]>
  • Loading branch information
alexandrebelloni committed Apr 30, 2019
1 parent d10dcc9 commit e72746e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/rtc/rtc-jz4740.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,11 +176,11 @@ static int jz4740_rtc_read_time(struct device *dev, struct rtc_time *time)
return 0;
}

static int jz4740_rtc_set_mmss(struct device *dev, unsigned long secs)
static int jz4740_rtc_set_time(struct device *dev, struct rtc_time *time)
{
struct jz4740_rtc *rtc = dev_get_drvdata(dev);

return jz4740_rtc_reg_write(rtc, JZ_REG_RTC_SEC, secs);
return jz4740_rtc_reg_write(rtc, JZ_REG_RTC_SEC, rtc_tm_to_time64(time));
}

static int jz4740_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
Expand Down Expand Up @@ -223,7 +223,7 @@ static int jz4740_rtc_alarm_irq_enable(struct device *dev, unsigned int enable)

static const struct rtc_class_ops jz4740_rtc_ops = {
.read_time = jz4740_rtc_read_time,
.set_mmss = jz4740_rtc_set_mmss,
.set_time = jz4740_rtc_set_time,
.read_alarm = jz4740_rtc_read_alarm,
.set_alarm = jz4740_rtc_set_alarm,
.alarm_irq_enable = jz4740_rtc_alarm_irq_enable,
Expand Down

0 comments on commit e72746e

Please sign in to comment.