Re: [PATCH 01/12] tcp.h: Remove extern from function prototypes

2013-09-23 Thread Joe Perches
On Mon, 2013-09-23 at 16:30 -0400, David Miller wrote: > Series applied, How about the same changes for the .h files in drivers/net ? (slowly of course, and by maintained subsystem) $ git grep -E "^\s*\bextern(\s+\w+){1,4}\s*\(\s*[^\*]" drivers/net/ | wc -l 1445 Maybe something like groups of:

Re: [PATCH 01/12] tcp.h: Remove extern from function prototypes

2013-09-23 Thread David Miller
From: Joe Perches Date: Mon, 23 Sep 2013 13:44:02 -0700 > On Mon, 2013-09-23 at 16:30 -0400, David Miller wrote: >> Series applied, > > How about the same changes for the .h files in drivers/net ? > > (slowly of course, and by maintained subsystem) > > $ git grep -E "^\s*\bextern(\s+\w+){1,4}\

Re: [PATCH 01/12] tcp.h: Remove extern from function prototypes

2013-09-23 Thread David Miller
Series applied, thanks Joe. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

[PATCH 01/12] tcp.h: Remove extern from function prototypes

2013-09-23 Thread Joe Perches
There are a mix of function prototypes with and without extern in the kernel sources. Standardize on not using extern for function prototypes. Function prototypes don't need to be written with extern. extern is assumed by the compiler. Its use is as unnecessary as using auto to declare automatic