From: Alexandre Belloni Date: Mon, 19 Feb 2018 15:24:19 +0000 (+0100) Subject: rtc: sc27xx: stop validating rtc_time in .read_time X-Git-Tag: Ubuntu-5.13.0-19.19~11235^2~59 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=66b32fc54c8e04079102ad356b88a448aad4cb81;p=mirror_ubuntu-jammy-kernel.git rtc: sc27xx: stop validating rtc_time in .read_time rtc_time64_to_tm never generates an invalid tm. It is not necessary to validate it. Also, the RTC core is always calling rtc_valid_tm after the read_time callback. Reviewed-by: Baolin Wang Signed-off-by: Alexandre Belloni --- diff --git a/drivers/rtc/rtc-sc27xx.c b/drivers/rtc/rtc-sc27xx.c index d544d5268757..00d87d138984 100644 --- a/drivers/rtc/rtc-sc27xx.c +++ b/drivers/rtc/rtc-sc27xx.c @@ -376,7 +376,7 @@ static int sprd_rtc_read_time(struct device *dev, struct rtc_time *tm) return ret; rtc_time64_to_tm(secs, tm); - return rtc_valid_tm(tm); + return 0; } static int sprd_rtc_set_time(struct device *dev, struct rtc_time *tm)