Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757357AbYFOHut (ORCPT ); Sun, 15 Jun 2008 03:50:49 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756581AbYFOHub (ORCPT ); Sun, 15 Jun 2008 03:50:31 -0400 Received: from mail01d.mail.t-online.hu ([84.2.42.6]:53334 "EHLO mail01d.mail.t-online.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755940AbYFOHu2 (ORCPT ); Sun, 15 Jun 2008 03:50:28 -0400 Message-ID: <4854C9BF.8040900@freemail.hu> Date: Sun, 15 Jun 2008 09:50:23 +0200 From: =?ISO-8859-1?Q?N=E9meth_M=E1rton?= User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.2) Gecko/20070221 SeaMonkey/1.1.1 MIME-Version: 1.0 To: Stefan Richter , David Newall CC: Jeff Garzik , netdev@vger.kernel.org, Trivial Patch Monkey , LKML Subject: Re: [PATCH 1/2] 8139too: clean up spaces and TABs References: <4853BB62.1060109@freemail.hu> <4853C8AD.9020407@s5r6.in-berlin.de> <48541165.7050304@freemail.hu> <485421C1.8010102@s5r6.in-berlin.de> In-Reply-To: <485421C1.8010102@s5r6.in-berlin.de> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-DCC--Metrics: mail01d.mail.t-online.hu 0; Body=6 Fuz1=6 Fuz2=6 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2756 Lines: 63 Stefan Richter wrote: > N?meth M?rton wrote: >> From: M?rton N?meth >> >> Clean up the following errors and warnings reported by checkpatch.pl: > > Is 8139too in active development or are there people actively fixing > current bugs in it? If not, a whitespace cleanup may be considered a > waste of time. There are even a few valid arguments that such changes > are harmful then. > >> - space prohibited between function name and open parenthesis '(' >> - space required before the open brace '{' >> - code indent should use tabs where possible >> - line over 80 characters >> - spaces required around that '=' (ctx:VxW) > > Did you check that your whitespace changes are indeed only whitespace > changes, i.e. that resulting assembler is unchanged? If you checked it, > it's worth mentioning in the submission. Yes, I checked this. When I compared the "objdump -d" output I found that only the function calls are changed where the __LINE__ is a parameter. Sorry about taking your time. My intention was to make the 8139too source code better as I am using this driver actively to communicate with the digital world. I have chosen the checkpatch.pl's output to compare the whether the old and the new code are better or not. Maybe that was a mistake. I would like to try it again, but in a different way. I collected here the different problems reported by checkpatch.pl. I divided it to two groups according to your comments which I think it worth to deal with: + ERROR: Macros with complex values should be enclosed in parenthesis + WARNING: __func__ should be used instead of gcc specific __FUNCTION__ + WARNING: plain inline is preferred over __inline__ + WARNING: Use #include instead of + WARNING: Use #include instead of and the second group which it seems that may hurt somebody: - ERROR: code indent should use tabs where possible - ERROR: space required after that ',' (ctx:VxV) - ERROR: space required before the open brace '{' - ERROR: space required before the open parenthesis '(' - ERROR: spaces required around that '=' (ctx:VxW) - ERROR: trailing statements should be on next line - WARNING: braces {} are not necessary for single statement blocks - WARNING: do not add new typedefs - WARNING: line over 80 characters - WARNING: space prohibited between function name and open parenthesis '(' This is a much smaller set of changes. What do you think? Regards, M?rton N?meth -- 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/