From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754000AbcIOS46 (ORCPT ); Thu, 15 Sep 2016 14:56:58 -0400 Received: from mail-wm0-f68.google.com ([74.125.82.68]:33900 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753749AbcIOS4u (ORCPT ); Thu, 15 Sep 2016 14:56:50 -0400 Date: Thu, 15 Sep 2016 21:56:32 +0300 From: Moshe Green To: Greg KH Cc: sudipm.mukherjee@gmail.com, teddy.wang@siliconmotion.com, devel@driverdev.osuosl.org, linux-fbdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/2] staging: sm750fb: fix line length coding style issues in ddk750_chip.c Message-ID: <20160915185632.GA17632@gmail.com> References: <523e16874da50855062fcc51b6754e2b9c42b9e5.1472932508.git.mgmoshes@gmail.com> <20160912111635.GA12026@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20160912111635.GA12026@kroah.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Sep 12, 2016 at 01:16:35PM +0200, Greg KH wrote: > On Sun, Sep 04, 2016 at 09:03:27PM +0300, Moshe Green wrote: > > Fix multiple line length warnings found by the checkpatch.pl tool > > in ddk750_chip.c. > > > > Signed-off-by: Moshe Green > > --- > > drivers/staging/sm750fb/ddk750_chip.c | 18 ++++++++++++------ > > 1 file changed, 12 insertions(+), 6 deletions(-) > > > > diff --git a/drivers/staging/sm750fb/ddk750_chip.c b/drivers/staging/sm750fb/ddk750_chip.c > > index c1356bb..76aaeaa 100644 > > --- a/drivers/staging/sm750fb/ddk750_chip.c > > +++ b/drivers/staging/sm750fb/ddk750_chip.c > > @@ -71,7 +71,7 @@ static void setChipClock(unsigned int frequency) > > pll.clockType = MXCLK_PLL; > > > > /* > > - * Call calcPllValue() to fill up the other fields for PLL structure. > > + * Call calcPllValue() to fill the other fields of PLL structure. > > * Sometime, the chip cannot set up the exact clock required by User. > > * Return value from calcPllValue() gives the actual possible clock. > > You only changed one sentance here, please fix the whole block. > > thanks, > > greg k-h Will do. Thanks