Commit a7ab6bed authored by Alexandre Belloni's avatar Alexandre Belloni
Browse files

rtc: jz4740: set range



RTC_SEC is a 32-bit seconds counter.

Tested-by: default avatarMathieu Malaterre <malat@debian.org>
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
parent f22b1ba1
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
@@ -348,10 +348,18 @@ static int jz4740_rtc_probe(struct platform_device *pdev)

	device_init_wakeup(&pdev->dev, 1);

	rtc->rtc = devm_rtc_device_register(&pdev->dev, pdev->name,
					&jz4740_rtc_ops, THIS_MODULE);
	rtc->rtc = devm_rtc_allocate_device(&pdev->dev);
	if (IS_ERR(rtc->rtc)) {
		ret = PTR_ERR(rtc->rtc);
		dev_err(&pdev->dev, "Failed to allocate rtc device: %d\n", ret);
		return ret;
	}

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

	ret = rtc_register_device(rtc->rtc);
	if (ret) {
		dev_err(&pdev->dev, "Failed to register rtc device: %d\n", ret);
		return ret;
	}