From mboxrd@z Thu Jan 1 00:00:00 1970 From: linux@roeck-us.net (Guenter Roeck) Date: Mon, 16 Dec 2013 14:38:04 -0800 Subject: [PATCHv4] rtc: Add support for Intersil ISL12057 I2C RTC chip In-Reply-To: <87mwk0l9j2.fsf@natisbad.org> References: <1dec5992db795b61e91e0abf910dee7fce322ccc.1387227955.git.arno@natisbad.org> <20131216213706.GA8527@roeck-us.net> <87mwk0l9j2.fsf@natisbad.org> Message-ID: <20131216223804.GA10162@roeck-us.net> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Mon, Dec 16, 2013 at 11:24:01PM +0100, Arnaud Ebalard wrote: > Hi Guenter, > > Guenter Roeck writes: > > > On Mon, Dec 16, 2013 at 10:17:47PM +0100, Arnaud Ebalard wrote: > >> > >> Intersil ISL12057 I2C RTC chip also supports two alarms. This patch > >> only adds support for basic RTC functionalities (i.e. getting and > >> setting time). Tests have been performed on NETGEAR ReadyNAS 102 w/ > >> startup/shutdown scripts, hwclock, ntpdate and openntpd. > >> > >> Signed-off-by: Arnaud Ebalard > > > > Here is a snippet from the saved patch: > > > > obj-$(CONFIG_RTC_DRV_IMXDI) +=3D rtc-imxdi.o > > obj-$(CONFIG_RTC_DRV_ISL1208) +=3D rtc-isl1208.o > > obj-$(CONFIG_RTC_DRV_ISL12022) +=3D rtc-isl12022.o > > +obj-$(CONFIG_RTC_DRV_ISL12057) +=3D rtc-isl12057.o > > obj-$(CONFIG_RTC_DRV_JZ4740) +=3D rtc-jz4740.o > > obj-$(CONFIG_RTC_DRV_LP8788) +=3D rtc-lp8788.o > > obj-$(CONFIG_RTC_DRV_LPC32XX) +=3D rtc-lpc32xx.o > > > > Something is adding those '3D' after each '=' into the patch. > > Well, I simply use git-imap-send to send the patch to my IMAP draft > folder and then sent it from my mailer (Gnus/5.13 for Emacs/24.3). > > What is very weird is that if I simply save the mail I received from > LAKML (I am registered to LAKML which I have put in Cc:), checkptach > gives me the following (my checkpatch.pl is the one in 3.13.0.rc4): > > $ ./scripts/checkpatch.pl /tmp/v4.patch ERROR: Do not include the > paragraph about writing to the Free Software Foundation's mailing > address from the sample GPL notice. The FSF has changed addresses in the > past, and may do so again. Linux already includes a copy of the GPL. > #165: FILE: drivers/rtc/rtc-isl12057.c:23: > + * You should have received a copy of the GNU General Public License$ > > ERROR: Do not include the paragraph about writing to the Free Software > Foundation's mailing address from the sample GPL notice. The FSF has > changed addresses in the past, and may do so again. Linux already > includes a copy of the GPL. > #166: FILE: drivers/rtc/rtc-isl12057.c:24: > + * along with this program; if not, write to the Free Software$ > > total: 2 errors, 0 warnings, 396 lines checked > > /tmp/v4.patch has style problems, please review. > > If any of these errors are false positives, please report > them to the maintainer, see CHECKPATCH in MAINTAINERS. > > Those false/positive are the only error checkptach reports on my side > for the patch. This is the same if I copy/paste the content of the >
 with the patch in the following page:
> 
>  http://www.spinics.net/lists/arm-kernel/msg294759.html. 
> 
> I do not say you are wrong but I do not have a clue were the problem
> may come from.
> 
Oddly enough me not either. Let's assume the problem was on my side.
I sent you another round of comments a bit ago.

Thanks,
Guenter

From mboxrd@z Thu Jan  1 00:00:00 1970
From: Guenter Roeck 
Subject: Re: [PATCHv4] rtc: Add support for Intersil ISL12057 I2C RTC chip
Date: Mon, 16 Dec 2013 14:38:04 -0800
Message-ID: <20131216223804.GA10162@roeck-us.net>
References: <1dec5992db795b61e91e0abf910dee7fce322ccc.1387227955.git.arno@natisbad.org>
 <20131216213706.GA8527@roeck-us.net>
 <87mwk0l9j2.fsf@natisbad.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Return-path: 
Content-Disposition: inline
In-Reply-To: <87mwk0l9j2.fsf@natisbad.org>
Sender: linux-doc-owner@vger.kernel.org
To: Arnaud Ebalard 
Cc: Mark Rutland , Alessandro Zummo , Peter Huewe , Linus Walleij , Thierry Reding , Mark Brown , Rob Herring , Pawel Moll , Stephen Warren , Ian Campbell , Grant Likely , devicetree@vger.kernel.org, linux-doc@vger.kernel.org, Rob Landley , rtc-linux@googlegroups.com, Jason Cooper , Jason Gunthorpe , Kumar Gala , linux-arm-kernel@lists.infradead.org
List-Id: devicetree@vger.kernel.org

On Mon, Dec 16, 2013 at 11:24:01PM +0100, Arnaud Ebalard wrote:
> Hi Guenter,
> 
> Guenter Roeck  writes:
> 
> > On Mon, Dec 16, 2013 at 10:17:47PM +0100, Arnaud Ebalard wrote:
> >> 
> >> Intersil ISL12057 I2C RTC chip also supports two alarms. This patch
> >> only adds support for basic RTC functionalities (i.e. getting and
> >> setting time). Tests have been performed on NETGEAR ReadyNAS 102 w/
> >> startup/shutdown scripts, hwclock, ntpdate and openntpd.
> >> 
> >> Signed-off-by: Arnaud Ebalard 
> >
> > Here is a snippet from the saved patch:
> >
> >  obj-$(CONFIG_RTC_DRV_IMXDI)    +=3D rtc-imxdi.o
> >  obj-$(CONFIG_RTC_DRV_ISL1208)  +=3D rtc-isl1208.o
> >  obj-$(CONFIG_RTC_DRV_ISL12022) +=3D rtc-isl12022.o
> > +obj-$(CONFIG_RTC_DRV_ISL12057)  +=3D rtc-isl12057.o
> >  obj-$(CONFIG_RTC_DRV_JZ4740)   +=3D rtc-jz4740.o
> >  obj-$(CONFIG_RTC_DRV_LP8788)   +=3D rtc-lp8788.o
> >  obj-$(CONFIG_RTC_DRV_LPC32XX)  +=3D rtc-lpc32xx.o
> >
> > Something is adding those '3D' after each '=' into the patch.
> 
> Well, I simply use git-imap-send to send the patch to my IMAP draft
> folder and then sent it from my mailer (Gnus/5.13 for Emacs/24.3).
> 
> What is very weird is that if I simply save the mail I received from
> LAKML (I am registered to LAKML which I have put in Cc:), checkptach
> gives me the following (my checkpatch.pl is the one in 3.13.0.rc4):
> 
>   $ ./scripts/checkpatch.pl /tmp/v4.patch ERROR: Do not include the
>   paragraph about writing to the Free Software Foundation's mailing
>   address from the sample GPL notice. The FSF has changed addresses in the
>   past, and may do so again. Linux already includes a copy of the GPL. 
>   #165: FILE: drivers/rtc/rtc-isl12057.c:23:
>   + * You should have received a copy of the GNU General Public License$
>   
>   ERROR: Do not include the paragraph about writing to the Free Software
>   Foundation's mailing address from the sample GPL notice. The FSF has
>   changed addresses in the past, and may do so again. Linux already
>   includes a copy of the GPL. 
>   #166: FILE: drivers/rtc/rtc-isl12057.c:24:
>   + * along with this program; if not, write to the Free Software$
>   
>   total: 2 errors, 0 warnings, 396 lines checked
>   
>   /tmp/v4.patch has style problems, please review.
>   
>   If any of these errors are false positives, please report
>   them to the maintainer, see CHECKPATCH in MAINTAINERS.
> 
> Those false/positive are the only error checkptach reports on my side
> for the patch. This is the same if I copy/paste the content of the
> 
 with the patch in the following page:
> 
>  http://www.spinics.net/lists/arm-kernel/msg294759.html. 
> 
> I do not say you are wrong but I do not have a clue were the problem
> may come from.
> 
Oddly enough me not either. Let's assume the problem was on my side.
I sent you another round of comments a bit ago.

Thanks,
Guenter