aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc
diff options
context:
space:
mode:
authorAlexandre Belloni <alexandre.belloni@bootlin.com>2019-04-30 11:28:17 +0200
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2019-04-30 11:50:17 +0200
commitd10dcc95fa6591280d45418c9f96997e7888575f (patch)
tree05eda431e50c20c9a6f1a081b51e4011a489332e /drivers/rtc
parentrtc: jz4740: switch to rtc_time64_to_tm/rtc_tm_to_time64 (diff)
downloadlinux-dev-d10dcc95fa6591280d45418c9f96997e7888575f.tar.xz
linux-dev-d10dcc95fa6591280d45418c9f96997e7888575f.zip
rtc: jz4740: remove useless check
rtc_time64_to_tm always returns a valid tm, it is not necessary to validate it. Tested-by: Mathieu Malaterre <malat@debian.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers/rtc')
-rw-r--r--drivers/rtc/rtc-jz4740.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-jz4740.c b/drivers/rtc/rtc-jz4740.c
index 428376639870..f2b8d6541c9e 100644
--- a/drivers/rtc/rtc-jz4740.c
+++ b/drivers/rtc/rtc-jz4740.c
@@ -198,7 +198,7 @@ static int jz4740_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
rtc_time64_to_tm(secs, &alrm->time);
- return rtc_valid_tm(&alrm->time);
+ return 0;
}
static int jz4740_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)