diff options
author | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2018-02-21 22:40:23 +0100 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2018-03-20 00:02:09 +0100 |
commit | f6b1a3a4a72e27234a02d9095080fc811848598c (patch) | |
tree | 6175e1c4562474909a4d726ecbaa5acdcba0e541 | |
parent | 051abf552468d4b80c0ccf8c69667bfab672cec0 (diff) | |
download | linux-f6b1a3a4a72e27234a02d9095080fc811848598c.tar.gz linux-f6b1a3a4a72e27234a02d9095080fc811848598c.tar.bz2 linux-f6b1a3a4a72e27234a02d9095080fc811848598c.zip |
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>
-rw-r--r-- | arch/parisc/kernel/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/kernel/time.c b/arch/parisc/kernel/time.c index 4b8fd6dc22da..f2890bd240f8 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) |