Commit be2b0437 authored by Alexandre Belloni's avatar Alexandre Belloni

rtc: ds2404: use .set_time

Use .set_time instead of the deprecated .set_mmss.
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
parent 53523216
...@@ -210,16 +210,16 @@ static int ds2404_read_time(struct device *dev, struct rtc_time *dt) ...@@ -210,16 +210,16 @@ static int ds2404_read_time(struct device *dev, struct rtc_time *dt)
return 0; return 0;
} }
static int ds2404_set_mmss(struct device *dev, unsigned long secs) static int ds2404_set_time(struct device *dev, struct rtc_time *dt)
{ {
u32 time = cpu_to_le32(secs); u32 time = cpu_to_le32(rtc_tm_to_time64(dt));
ds2404_write_memory(dev, 0x203, 4, (u8 *)&time); ds2404_write_memory(dev, 0x203, 4, (u8 *)&time);
return 0; return 0;
} }
static const struct rtc_class_ops ds2404_rtc_ops = { static const struct rtc_class_ops ds2404_rtc_ops = {
.read_time = ds2404_read_time, .read_time = ds2404_read_time,
.set_mmss = ds2404_set_mmss, .set_time = ds2404_set_time,
}; };
static int rtc_probe(struct platform_device *pdev) static int rtc_probe(struct platform_device *pdev)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment