summaryrefslogtreecommitdiffstats
path: root/arch/parisc
diff options
context:
space:
mode:
authorAlexandre Belloni <alexandre.belloni@bootlin.com>2018-02-21 22:40:23 +0100
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2018-03-20 00:02:09 +0100
commitf6b1a3a4a72e27234a02d9095080fc811848598c (patch)
tree6175e1c4562474909a4d726ecbaa5acdcba0e541 /arch/parisc
parent051abf552468d4b80c0ccf8c69667bfab672cec0 (diff)
downloadop-kernel-dev-f6b1a3a4a72e27234a02d9095080fc811848598c.zip
op-kernel-dev-f6b1a3a4a72e27234a02d9095080fc811848598c.tar.gz
parisc: time: stop validating rtc_time in .read_time
The RTC core is always calling rtc_valid_tm after the read_time callback. It is not necessary to call it just before returning from the callback. Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Acked-by: Helge Deller <deller@gmx.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'arch/parisc')
-rw-r--r--arch/parisc/kernel/time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/kernel/time.c b/arch/parisc/kernel/time.c
index 4b8fd6d..f2890bd 100644
--- a/arch/parisc/kernel/time.c
+++ b/arch/parisc/kernel/time.c
@@ -173,7 +173,7 @@ static int rtc_generic_get_time(struct device *dev, struct rtc_time *tm)
/* we treat tod_sec as unsigned, so this can work until year 2106 */
rtc_time64_to_tm(tod_data.tod_sec, tm);
- return rtc_valid_tm(tm);
+ return 0;
}
static int rtc_generic_set_time(struct device *dev, struct rtc_time *tm)
OpenPOWER on IntegriCloud