Re: [RFC PATCH] checkpatch: Add warning for asymmetric brace use

From: Joe Perches
Date: Wed Jan 11 2012 - 15:43:11 EST


On Wed, 2012-01-11 at 11:58 -0800, Joe Perches wrote:
> Here's a possible checkpatch patch.
> It seems to work on the test cases I've tried.
[]
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
[]
> + if ($seen) {
> + my $sum_allowed = 0;
> + foreach (@allowed) {
> + $sum_allowed += $_;
> + }
> + if ($sum_allowed == 0) {
> + WARN("BRACES",
> + "braces {} are not necessary for any arm of this statement\n" . $herectx);
> + } elsif ($sum_allowed != $allow) {

I ran some more tests against the kernel source.
This works better as:

+ } elsif ($sum_allowed != $allow &&
+ $seen != $allow) {

> + WARN("BRACES",
> + "braces {} should be used on all arms of this statement\n" . $herectx);
> + }



--
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/