diff options
author | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2019-03-22 03:22:55 -0400 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2019-04-04 04:07:10 -0400 |
commit | 3ec99d6136f00d1a73295ba18544fdbfd8fa2a1e (patch) | |
tree | 9442301d74782cf69b0a2634eda9f68c188e6ab0 | |
parent | 65c6f638d600181f66a6a5aa2e86a4162ca87a38 (diff) |
rtc: sun4v: set range
The Sun4v Hypervisor Core API Specification states:
Time is described by a single unsigned 64-bit word equivalent to a time_t
for the POSIX time(2) system call. The word contains the time since the
Epoch (00:00:00 UTC, January 1, 1970), measured in seconds.
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
-rw-r--r-- | drivers/rtc/rtc-sun4v.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/rtc/rtc-sun4v.c b/drivers/rtc/rtc-sun4v.c index 378081fffa91..82fb51f79c6e 100644 --- a/drivers/rtc/rtc-sun4v.c +++ b/drivers/rtc/rtc-sun4v.c | |||
@@ -78,13 +78,15 @@ static int __init sun4v_rtc_probe(struct platform_device *pdev) | |||
78 | { | 78 | { |
79 | struct rtc_device *rtc; | 79 | struct rtc_device *rtc; |
80 | 80 | ||
81 | rtc = devm_rtc_device_register(&pdev->dev, "sun4v", | 81 | rtc = devm_rtc_allocate_device(&pdev->dev); |
82 | &sun4v_rtc_ops, THIS_MODULE); | ||
83 | if (IS_ERR(rtc)) | 82 | if (IS_ERR(rtc)) |
84 | return PTR_ERR(rtc); | 83 | return PTR_ERR(rtc); |
85 | 84 | ||
85 | rtc->ops = &sun4v_rtc_ops; | ||
86 | rtc->range_max = U64_MAX; | ||
86 | platform_set_drvdata(pdev, rtc); | 87 | platform_set_drvdata(pdev, rtc); |
87 | return 0; | 88 | |
89 | return rtc_register_device(rtc); | ||
88 | } | 90 | } |
89 | 91 | ||
90 | static struct platform_driver sun4v_rtc_driver = { | 92 | static struct platform_driver sun4v_rtc_driver = { |