Skip to content

Commit

Permalink
rtc: starfire: set range
Browse files Browse the repository at this point in the history
The starfire RTC is a 32bit seconds counter.

Link: https://lore.kernel.org/r/20200306005910.38939-1-alexandre.belloni@bootlin.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
  • Loading branch information
Alexandre Belloni committed Mar 16, 2020
1 parent c33c471 commit 166b133
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions drivers/rtc/rtc-starfire.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,16 @@ static int __init starfire_rtc_probe(struct platform_device *pdev)
{
struct rtc_device *rtc;

rtc = devm_rtc_device_register(&pdev->dev, "starfire",
&starfire_rtc_ops, THIS_MODULE);
rtc = devm_rtc_allocate_device(&pdev->dev);
if (IS_ERR(rtc))
return PTR_ERR(rtc);

rtc->ops = &starfire_rtc_ops;
rtc->range_max = U32_MAX;

platform_set_drvdata(pdev, rtc);

return 0;
return rtc_register_device(rtc);
}

static struct platform_driver starfire_rtc_driver = {
Expand Down

0 comments on commit 166b133

Please sign in to comment.