linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* checkpatch.pl: WxV false positive
@ 2012-01-23  2:48 Vivien Didelot
  2012-01-30 11:18 ` Andy Whitcroft
  0 siblings, 1 reply; 3+ messages in thread
From: Vivien Didelot @ 2012-01-23  2:48 UTC (permalink / raw)
  To: Andy Whitcroft; +Cc: linux-kernel

Hi Andy,

In the code below, checkpatch thinks that the asterisk is a
multiplication, so it is complaining about coding style.

    ERROR: need consistent spacing around '*' (ctx:WxV)
    #304: FILE: x86/platform/ts5500/ts5500_adc.c:304:
    +	.attrs = (struct attribute *[]) {


Cheers!

	-vivien

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: checkpatch.pl: WxV false positive
  2012-01-23  2:48 checkpatch.pl: WxV false positive Vivien Didelot
@ 2012-01-30 11:18 ` Andy Whitcroft
  2012-01-30 16:39   ` Vivien Didelot
  0 siblings, 1 reply; 3+ messages in thread
From: Andy Whitcroft @ 2012-01-30 11:18 UTC (permalink / raw)
  To: Vivien Didelot; +Cc: linux-kernel

On Sun, Jan 22, 2012 at 09:48:34PM -0500, Vivien Didelot wrote:

> In the code below, checkpatch thinks that the asterisk is a
> multiplication, so it is complaining about coding style.
> 
>     ERROR: need consistent spacing around '*' (ctx:WxV)
>     #304: FILE: x86/platform/ts5500/ts5500_adc.c:304:
>     +	.attrs = (struct attribute *[]) {

C types are the pits.  How does the version below handle for you:

    http://people.canonical.com/~apw/checkpatch/checkpatch-next.pl

Relative patch below.

-apw

commit f8a73045dcaac70f9be770cca06f21c762a13878
Author: Andy Whitcroft <apw@canonical.com>
Date:   Sun Jan 29 21:46:04 2012 +0000

    checkpatch: add [] to type extensions
    
    Add [] to a type extensions.  Fixes false positives on:
    
        .attrs = (struct attribute *[]) {
    
    Signed-off-by: Andy Whitcroft <apw@canonical.com>

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index d1dd544..64de1bd 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -323,7 +323,7 @@ sub build_types {
 		  }x;
 	$Type	= qr{
 			$NonptrType
-			(?:[\s\*]+\s*const|[\s\*]+|(?:\s*\[\s*\])+)?
+			(?:(?:\s|\*|\[\])+\s*const|(?:\s|\*|\[\])+|(?:\s*\[\s*\])+)?
 			(?:\s+$Inline|\s+$Modifier)*
 		  }x;
 	$Declare	= qr{(?:$Storage\s+)?$Type};

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: checkpatch.pl: WxV false positive
  2012-01-30 11:18 ` Andy Whitcroft
@ 2012-01-30 16:39   ` Vivien Didelot
  0 siblings, 0 replies; 3+ messages in thread
From: Vivien Didelot @ 2012-01-30 16:39 UTC (permalink / raw)
  To: Andy Whitcroft; +Cc: linux-kernel

Hi Andy,

On Mon, 30 Jan 2012 11:18:17 +0000,
Andy Whitcroft <apw@canonical.com> wrote:

> On Sun, Jan 22, 2012 at 09:48:34PM -0500, Vivien Didelot wrote:
> 
> > In the code below, checkpatch thinks that the asterisk is a
> > multiplication, so it is complaining about coding style.
> > 
> >     ERROR: need consistent spacing around '*' (ctx:WxV)
> >     #304: FILE: x86/platform/ts5500/ts5500_adc.c:304:
> >     +	.attrs = (struct attribute *[]) {
> 
> C types are the pits.  How does the version below handle for you:
> 
>     http://people.canonical.com/~apw/checkpatch/checkpatch-next.pl
> 

This version works for me!

> Relative patch below.
> 
> -apw
> 
> commit f8a73045dcaac70f9be770cca06f21c762a13878
> Author: Andy Whitcroft <apw@canonical.com>
> Date:   Sun Jan 29 21:46:04 2012 +0000
> 
>     checkpatch: add [] to type extensions
>     
>     Add [] to a type extensions.  Fixes false positives on:
>     
>         .attrs = (struct attribute *[]) {
>     
>     Signed-off-by: Andy Whitcroft <apw@canonical.com>
> 
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index d1dd544..64de1bd 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -323,7 +323,7 @@ sub build_types {
>  		  }x;
>  	$Type	= qr{
>  			$NonptrType
> -			(?:[\s\*]+\s*const|[\s\*]+|(?:\s*\[\s*\])+)?
> +
> (?:(?:\s|\*|\[\])+\s*const|(?:\s|\*|\[\])+|(?:\s*\[\s*\])+)?
> (?:\s+$Inline|\s+$Modifier)* }x;
>  	$Declare	= qr{(?:$Storage\s+)?$Type};

Thanks,
Vivien

-- 
Vivien Didelot
Savoir-faire Linux Inc.
Tel: (514) 276-5468 #149

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-01-30 16:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-23  2:48 checkpatch.pl: WxV false positive Vivien Didelot
2012-01-30 11:18 ` Andy Whitcroft
2012-01-30 16:39   ` Vivien Didelot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).