summaryrefslogtreecommitdiff
path: root/drivers/rtc/rtc-rx4581.c
diff options
context:
space:
mode:
authorAlexandre Belloni <alexandre.belloni@bootlin.com>2018-02-21 00:23:31 +0100
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2018-03-02 10:12:24 +0100
commit02d289975a3bd0b8dbc924893d15e7859ae41625 (patch)
treebd6e25f3589e83820dbf6cebd6f4dd38d71b0ad6 /drivers/rtc/rtc-rx4581.c
parentb1b8394edc3b9b4093f3a2a6b98b8d76ac46dc7e (diff)
rtc: rx4581: remove useless message
It is not necessary to print a message when the time is invalid as userspace will already get an error (and an optional dev_dbg message). Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc/rtc-rx4581.c')
-rw-r--r--drivers/rtc/rtc-rx4581.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/rtc/rtc-rx4581.c b/drivers/rtc/rtc-rx4581.c
index de3fe4f8d133..c59a218bdd87 100644
--- a/drivers/rtc/rtc-rx4581.c
+++ b/drivers/rtc/rtc-rx4581.c
@@ -172,11 +172,7 @@ static int rx4581_get_datetime(struct device *dev, struct rtc_time *tm)
tm->tm_sec, tm->tm_min, tm->tm_hour,
tm->tm_mday, tm->tm_mon, tm->tm_year, tm->tm_wday);
- err = rtc_valid_tm(tm);
- if (err < 0)
- dev_err(dev, "retrieved date/time is not valid.\n");
-
- return err;
+ return 0;
}
static int rx4581_set_datetime(struct device *dev, struct rtc_time *tm)