Commit 4cda172b authored by Alexandre Belloni's avatar Alexandre Belloni

rtc: rk808: remove useless debug message

At probe time, printing a message when the time is invalid doesn't have
much value. Also, as the comment suggest, this is a leftover from
development wherhe this was used to set the RTc to a default time.
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
parent 24f421b7
...@@ -375,7 +375,6 @@ static int rk808_rtc_probe(struct platform_device *pdev) ...@@ -375,7 +375,6 @@ static int rk808_rtc_probe(struct platform_device *pdev)
{ {
struct rk808 *rk808 = dev_get_drvdata(pdev->dev.parent); struct rk808 *rk808 = dev_get_drvdata(pdev->dev.parent);
struct rk808_rtc *rk808_rtc; struct rk808_rtc *rk808_rtc;
struct rtc_time tm;
int ret; int ret;
rk808_rtc = devm_kzalloc(&pdev->dev, sizeof(*rk808_rtc), GFP_KERNEL); rk808_rtc = devm_kzalloc(&pdev->dev, sizeof(*rk808_rtc), GFP_KERNEL);
...@@ -404,16 +403,6 @@ static int rk808_rtc_probe(struct platform_device *pdev) ...@@ -404,16 +403,6 @@ static int rk808_rtc_probe(struct platform_device *pdev)
return ret; return ret;
} }
/* set init time */
ret = rk808_rtc_readtime(&pdev->dev, &tm);
if (ret) {
dev_err(&pdev->dev, "Failed to read RTC time\n");
return ret;
}
ret = rtc_valid_tm(&tm);
if (ret)
dev_warn(&pdev->dev, "invalid date/time\n");
device_init_wakeup(&pdev->dev, 1); device_init_wakeup(&pdev->dev, 1);
rk808_rtc->rtc = devm_rtc_device_register(&pdev->dev, "rk808-rtc", rk808_rtc->rtc = devm_rtc_device_register(&pdev->dev, "rk808-rtc",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment