diff options
author | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2020-03-06 08:34:02 +0100 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2020-03-16 11:12:10 +0100 |
commit | 4136ff3a515752327baad3b78e3452af13bfdd05 (patch) | |
tree | 2d06cf6f4e64e357158f165256f594057eeb4557 /drivers/rtc | |
parent | c11af8131a4e7ba1960faed731ee7e84c2c13c94 (diff) | |
download | linux-4136ff3a515752327baad3b78e3452af13bfdd05.tar.bz2 |
rtc: ds1374: set range
The ds1374 is a 32bit seconds counter.
Link: https://lore.kernel.org/r/20200306073404.56921-2-alexandre.belloni@bootlin.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r-- | drivers/rtc/rtc-ds1374.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/rtc/rtc-ds1374.c b/drivers/rtc/rtc-ds1374.c index cb18a11a3c76..843fcbf5e940 100644 --- a/drivers/rtc/rtc-ds1374.c +++ b/drivers/rtc/rtc-ds1374.c @@ -646,6 +646,7 @@ static int ds1374_probe(struct i2c_client *client, } ds1374->rtc->ops = &ds1374_rtc_ops; + ds1374->rtc->range_max = U32_MAX; ret = rtc_register_device(ds1374->rtc); if (ret) |