Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758499Ab0FVNfp (ORCPT ); Tue, 22 Jun 2010 09:35:45 -0400 Received: from xyzzy.farnsworth.org ([65.39.95.219]:41869 "EHLO xyzzy.farnsworth.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757915Ab0FVNfo (ORCPT ); Tue, 22 Jun 2010 09:35:44 -0400 X-Greylist: delayed 2898 seconds by postgrey-1.27 at vger.kernel.org; Tue, 22 Jun 2010 09:35:44 EDT Date: Tue, 22 Jun 2010 05:47:09 -0700 From: Dale Farnsworth To: Wan ZongShun Cc: Alessandro Zummo , Andrew Morton , rtc-linux , LKML Message-ID: <20100622124709.GA6170@farnsworth.org> References: <4C207DAF.7010200@gmail.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <4C207DAF.7010200@gmail.com> User-Agent: Mutt/1.5.18 (2008-05-17) Subject: Re: [PATCH] RTC/max6900: use rtc_valid_tm to check returning tm for max6900 Content-Type: text/plain; charset=us-ascii Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1031 Lines: 30 On Tue, Jun 22, 2010 at 05:09:03PM +0800, Wan ZongShun wrote: > Use rtc_valid_tm to check returning tm for max6900, > it can avoid returning wrong tm value. > --- > drivers/rtc/rtc-max6900.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/drivers/rtc/rtc-max6900.c b/drivers/rtc/rtc-max6900.c > index a4f6665..486142c 100644 > --- a/drivers/rtc/rtc-max6900.c > +++ b/drivers/rtc/rtc-max6900.c > @@ -159,7 +159,7 @@ static int max6900_i2c_read_time(struct i2c_client *client, struct rtc_time *tm) > bcd2bin(regs[MAX6900_REG_CENTURY]) * 100 - 1900; > tm->tm_wday = bcd2bin(regs[MAX6900_REG_DW]); > > - return 0; > + return rtc_valid_tm(tm); > } > > static int max6900_i2c_clear_write_protect(struct i2c_client *client) Ack. Thanks, -Dale -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/