summaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-88pm860x.c
diff options
context:
space:
mode:
authorAlexandre Belloni <alexandre.belloni@bootlin.com>2020-03-11 23:39:52 +0100
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2020-03-16 11:55:55 +0100
commitb773f2a97fc5d53c5e57cf37fd4029026d38ba55 (patch)
tree63f3b0f94c24fa08c534dc1213763872bc9e2be8 /drivers/rtc/rtc-88pm860x.c
parent9cf4789e6e4673d0b2c96fa6bb0c35e81b43111a (diff)
downloadlinux-b773f2a97fc5d53c5e57cf37fd4029026d38ba55.tar.bz2
rtc: 88pm860x: stop setting a default time
It doesn't make sense to set the RTC to a default value at probe time. Let the core handle invalid date and time. Link: https://lore.kernel.org/r/20200311223956.51352-2-alexandre.belloni@bootlin.com Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc/rtc-88pm860x.c')
-rw-r--r--drivers/rtc/rtc-88pm860x.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/drivers/rtc/rtc-88pm860x.c b/drivers/rtc/rtc-88pm860x.c
index 1526402e126b..d6aca28905e3 100644
--- a/drivers/rtc/rtc-88pm860x.c
+++ b/drivers/rtc/rtc-88pm860x.c
@@ -360,19 +360,6 @@ static int pm860x_rtc_probe(struct platform_device *pdev)
dev_err(&pdev->dev, "Failed to read initial time.\n");
return ret;
}
- if ((tm.tm_year < 70) || (tm.tm_year > 138)) {
- tm.tm_year = 70;
- tm.tm_mon = 0;
- tm.tm_mday = 1;
- tm.tm_hour = 0;
- tm.tm_min = 0;
- tm.tm_sec = 0;
- ret = pm860x_rtc_set_time(&pdev->dev, &tm);
- if (ret < 0) {
- dev_err(&pdev->dev, "Failed to set initial time.\n");
- return ret;
- }
- }
rtc_tm_to_time(&tm, &ticks);
if (pm860x_rtc_dt_init(pdev, info)) {
if (pdata && pdata->sync) {