diff --git a/drivers/rtc/rtc-rx8581.c b/drivers/rtc/rtc-rx8581.c index c64911a08531..c5ffd30ca672 100644 --- a/drivers/rtc/rtc-rx8581.c +++ b/drivers/rtc/rtc-rx8581.c @@ -291,6 +291,8 @@ static int rx8581_probe(struct i2c_client *client, return PTR_ERR(rx8581->rtc); rx8581->rtc->ops = &rx8581_rtc_ops; + rx8581->rtc->range_min = RTC_TIMESTAMP_BEGIN_2000; + rx8581->rtc->range_max = RTC_TIMESTAMP_END_2099; return rtc_register_device(rx8581->rtc); }