From: Wan ZongShun Date: Wed, 11 Aug 2010 01:02:17 +0000 (-0700) Subject: rtc/m48t86: use rtc_valid_tm() to check returned tm X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=52142ed416f85dcc3e2061e720511a1e69ac3d93;p=deliverable%2Flinux.git rtc/m48t86: use rtc_valid_tm() to check returned tm Use rtc_valid_tm() to check the returned struct rtc_time *tm, to avoid returning a wrong tm value. Signed-off-by: Wan ZongShun Cc: Paul Gortmaker Cc: Alessandro Zummo Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/rtc/rtc-m48t86.c b/drivers/rtc/rtc-m48t86.c index 7c045cffa9ff..f981287d582b 100644 --- a/drivers/rtc/rtc-m48t86.c +++ b/drivers/rtc/rtc-m48t86.c @@ -77,7 +77,7 @@ static int m48t86_rtc_read_time(struct device *dev, struct rtc_time *tm) if (ops->readbyte(M48T86_REG_HOUR) & 0x80) tm->tm_hour += 12; - return 0; + return rtc_valid_tm(tm); } static int m48t86_rtc_set_time(struct device *dev, struct rtc_time *tm)