Re: [PATCH] checkpatch: fix false positive on casting to double pointer

From: Andy Whitcroft
Date: Fri Jun 18 2010 - 09:15:42 EST


On Thu, Jun 17, 2010 at 9:26 PM, Scott J. Goldman <scottjg@xxxxxxxxxx> wrote:
>
> Signed-off-by: Scott J. Goldman <scottjg@xxxxxxxxxx>
> ---
>  scripts/checkpatch.pl         |    4 +++-
>  tests/t/t9190-double-pointers |    6 ++++++
>  2 files changed, 9 insertions(+), 1 deletions(-)
>  create mode 100644 tests/t/t9190-double-pointers
>
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index 87bbb8b..687bd6f 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -1982,7 +1982,9 @@ sub process {
>                                         $op eq '*' or $op eq '/' or
>                                         $op eq '%')
>                                {
> -                                       if ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
> +                                       if ($op eq '*' && $cc =~ /^\*/) {
> +                                               # double pointer is ok
> +                                       } elsif ($ctx =~ /Wx[^WCE]|[^WCE]xW/) {
>                                                ERROR("need consistent spacing around '$op' $at\n" .
>                                                        $hereptr);

Hrm, I would expect any number of levels of pointers to be detected
already correctly.

/me goes check.

-apw
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/