Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932605AbcJGUAW (ORCPT ); Fri, 7 Oct 2016 16:00:22 -0400 Received: from smtprelay0103.hostedemail.com ([216.40.44.103]:50558 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S932228AbcJGUAN (ORCPT ); Fri, 7 Oct 2016 16:00:13 -0400 X-Session-Marker: 6A6F6540706572636865732E636F6D X-Spam-Summary: 30,2,0,,d41d8cd98f00b204,joe@perches.com,:::::::::,RULES_HIT:41:69:355:379:541:599:800:960:967:973:988:989:1260:1277:1311:1313:1314:1345:1359:1373:1437:1515:1516:1518:1534:1541:1593:1594:1711:1730:1747:1777:1792:1801:2198:2199:2393:2525:2553:2560:2563:2682:2685:2692:2828:2859:2933:2937:2939:2942:2945:2947:2951:2954:3022:3138:3139:3140:3141:3142:3354:3622:3865:3867:3868:3870:3871:3872:3873:3874:3934:3936:3938:3941:3944:3947:3950:3953:3956:3959:4321:4605:5007:6119:7514:7903:9025:10010:10400:10848:11026:11232:11658:11914:12043:12050:12291:12438:12555:12663:12679:12683:12740:12760:13069:13311:13357:13439:14181:14659:14721:21080:21451:30012:30054:30070:30090:30091,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:2:0,LFtime:4,LUA_SUMMARY:none X-HE-Tag: lift24_3bc732749ae59 X-Filterd-Recvd-Size: 2948 Message-ID: <1475870409.1945.11.camel@perches.com> Subject: Re: [PATCH] Staging:fbtft/fb_s6d02a1.c: fixed 80 character line limit coding From: Joe Perches To: Nadim Almas , Greg KH Cc: thomas.petazzoni@free-electrons.com, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Date: Fri, 07 Oct 2016 13:00:09 -0700 In-Reply-To: References: <20161007154302.GA4331@gmail.com> <20161007170716.GB20665@kroah.com> Content-Type: text/plain; charset="ISO-8859-1" X-Mailer: Evolution 3.22.0-2ubuntu1 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1936 Lines: 51 On Sat, 2016-10-08 at 00:25 +0530, Nadim Almas wrote: > why its seems worst to you i am just removing "80 character line > limit coding style" > for the last 3 months I am trying to submit my first patch but patch > is not accepted by you by giving reason i can't able to understand > please help me Taste in improving code is a difficult thing to acquire, determine and utilize. Keep on trying to improve the code and not just in ways that shut-up brainless tools. Please consider the difference between your initial patch and this proposal: https://patchwork.kernel.org/patch/9367167/ Apologies for not cc'ing you as your patch was what caused me to look at this code at all. > On Fri, Oct 7, 2016 at 10:37 PM, Greg KH wrote: > > On Fri, Oct 07, 2016 at 08:43:02AM -0700, Nadim Almas wrote: > > > style issue > > > > > > Fixed coding style issue > > > > > > This does not seem like valid sentances that mean much to me. Do they > > to you? > > > > > > > > Signed-off-by: Nadim Almas > > > --- > > > drivers/staging/fbtft/fb_s6d02a1.c | 30 ++++++++++++++++++++---------- > > > 1 file changed, 20 insertions(+), 10 deletions(-) > > > > > > diff --git a/drivers/staging/fbtft/fb_s6d02a1.c b/drivers/staging/fbtft/fb_s6d02a1.c > > > index 774b0ff..bc0c48f 100644 > > > --- a/drivers/staging/fbtft/fb_s6d02a1.c > > > +++ b/drivers/staging/fbtft/fb_s6d02a1.c > > > @@ -30,20 +30,27 @@ static int default_init_sequence[] = { > > > > > > -1, 0xfc, 0x5a, 0x5a, > > > > > > - -1, 0xfa, 0x02, 0x1f, 0x00, 0x10, 0x22, 0x30, 0x38, 0x3A, 0x3A, 0x3A, 0x3A, 0x3A, 0x3d, 0x02, 0x01, > > > + -1, 0xfa, 0x02, 0x1f, 0x00, 0x10, 0x22, 0x30, 0x38, 0x3A, 0x3A, 0x3A, > > > + 0x3A, 0x3A, 0x3d, 0x02, 0x01, > > > > > > This looks worse to me now, remember, checkpatch.pl is a "hint", not a > > hard-and-fast-rule. Use it wisely.