From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by ozlabs.org (Postfix) with ESMTP id 5C152DDE06 for ; Sun, 22 Jul 2007 02:42:15 +1000 (EST) Message-ID: <46A236FC.2080300@redhat.com> Date: Sat, 21 Jul 2007 12:40:28 -0400 From: Chris Snook MIME-Version: 1.0 To: Jesper Juhl , viro@ftp.linux.org.uk Subject: Re: [PATCH][12/37] Clean up duplicate includes in drivers/net/ References: <200707211702.46375.jesper.juhl@gmail.com> In-Reply-To: <200707211702.46375.jesper.juhl@gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Cc: info@netxen.com, Patrick McHardy , Judy Fischbach , Luke Yang , bonding-devel@lists.sourceforge.net, Bryan Wu , kong.lai@tundra.com, Jay Vosburgh , James Morris , linuxppc-embedded@ozlabs.org, Alexey Kuznetsov , Alex V Lasso , Ulrich Kunitz , Chad Tindel , Amit S Kale , Jay Cliburn , Samuel Ortiz , Brian Pugh , Daniel Drake , alexandre.bounine@tundra.com, Pantelis Antoniou , netdev@vger.kernel.org, linux-wireless@vger.kernel.org, Linux Kernel Mailing List , Ralf Baechle , Vitaly Bordug , Lukasz Stelmach , Ron Mercer , atl1-devel@lists.sourceforge.net, Andrew Morton , "David S. Miller" , James P Ketrenos List-Id: Linux on Embedded PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Jesper Juhl wrote: > Hi, > > This patch cleans up duplicate includes in > drivers/net/ > > > Signed-off-by: Jesper Juhl > --- > > diff --git a/drivers/net/atl1/atl1_main.c b/drivers/net/atl1/atl1_main.c > index fd1e156..4a18b88 100644 > --- a/drivers/net/atl1/atl1_main.c > +++ b/drivers/net/atl1/atl1_main.c > @@ -75,7 +75,6 @@ > #include > #include > #include > -#include > #include > > #include Define "duplicate". I ask because this patch just got posted a few days ago: Signed-off-by: Al Viro --- drivers/net/atl1/atl1_main.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/net/atl1/atl1_main.c b/drivers/net/atl1/atl1_main.c index 4a18b88..fd1e156 100644 --- a/drivers/net/atl1/atl1_main.c +++ b/drivers/net/atl1/atl1_main.c @@ -75,6 +75,7 @@ #include #include #include +#include #include #include I've always been under the impression that one should include all the files whose contents you use directly, because other includes that happen to include them might no longer need to in the future and cease including them. You can fight it out with Al if you feel like it. I'm keeping the rest of the CC list because the other maintainers might have similar feelings about the appropriateness of these includes in their drivers. -- Chris