diff options
-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 = { |