Prechádzať zdrojové kódy

rtc: at91rm9200: add range

The at91rm9200 RTC can support dates from 1900-01-01 00:00:00 to 2099-12-31
23:59:59.

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Alexandre Belloni 7 rokov pred
rodič
commit
6c78a872a6
1 zmenil súbory, kde vykonal 2 pridanie a 0 odobranie
  1. 2 0
      drivers/rtc/rtc-at91rm9200.c

+ 2 - 0
drivers/rtc/rtc-at91rm9200.c

@@ -440,6 +440,8 @@ static int __init at91_rtc_probe(struct platform_device *pdev)
 		device_init_wakeup(&pdev->dev, 1);
 		device_init_wakeup(&pdev->dev, 1);
 
 
 	rtc->ops = &at91_rtc_ops;
 	rtc->ops = &at91_rtc_ops;
+	rtc->range_min = RTC_TIMESTAMP_BEGIN_1900;
+	rtc->range_max = RTC_TIMESTAMP_END_2099;
 	ret = rtc_register_device(rtc);
 	ret = rtc_register_device(rtc);
 	if (ret)
 	if (ret)
 		goto err_clk;
 		goto err_clk;