diff options
author | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2019-03-20 15:34:13 +0300 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2019-04-04 11:07:08 +0300 |
commit | 5e2954fd8e3f4e01cb7315e9950fb772b9402130 (patch) | |
tree | 7279b452eefa8879e97c5e3578d0b71793a7c6c1 /drivers/rtc/rtc-goldfish.c | |
parent | 409b84e3eb941bf3a9486f9f90626a6d31d33b41 (diff) | |
download | linux-5e2954fd8e3f4e01cb7315e9950fb772b9402130.tar.xz |
rtc: goldfish: add range
This RTC has a 64bit nanosecond counter.
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc/rtc-goldfish.c')
-rw-r--r-- | drivers/rtc/rtc-goldfish.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/rtc/rtc-goldfish.c b/drivers/rtc/rtc-goldfish.c index d4cb33f209fb..354a1aa58495 100644 --- a/drivers/rtc/rtc-goldfish.c +++ b/drivers/rtc/rtc-goldfish.c @@ -210,6 +210,7 @@ static int goldfish_rtc_probe(struct platform_device *pdev) return PTR_ERR(rtcdrv->rtc); rtcdrv->rtc->ops = &goldfish_rtc_ops; + rtcdrv->rtc->range_max = U64_MAX / NSEC_PER_SEC; err = devm_request_irq(&pdev->dev, rtcdrv->irq, goldfish_rtc_interrupt, |