summaryrefslogtreecommitdiffstats
path: root/scripts/checkpatch.pl
diff options
context:
space:
mode:
authorAndy Whitcroft2012-01-11 00:10:10 +0100
committerLinus Torvalds2012-01-11 01:30:51 +0100
commitc81769fdc84ed7c6eb3cc5cecb194324a5e4c8ad (patch)
treebfa7973e16263c7993a54bd53e7a00f350f7d5cc /scripts/checkpatch.pl
parentcheckpatch: fix 'return is not a function' square bracket handling (diff)
downloadkernel-qcow2-linux-c81769fdc84ed7c6eb3cc5cecb194324a5e4c8ad.tar.gz
kernel-qcow2-linux-c81769fdc84ed7c6eb3cc5cecb194324a5e4c8ad.tar.xz
kernel-qcow2-linux-c81769fdc84ed7c6eb3cc5cecb194324a5e4c8ad.zip
checkpatch: fix complex macros handling of square brackets
Signed-off-by: Andy Whitcroft <apw@canonical.com> Cc: Joe Perches <joe@perches.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/checkpatch.pl')
-rwxr-xr-xscripts/checkpatch.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 5e3f4191f959..ba7bcf34ad01 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -2815,7 +2815,7 @@ sub process {
# Flatten any parentheses and braces
while ($dstat =~ s/\([^\(\)]*\)/1/ ||
$dstat =~ s/\{[^\{\}]*\}/1/ ||
- $dstat =~ s/\[[^\{\}]*\]/1/)
+ $dstat =~ s/\[[^\[\]]*\]/1/)
{
}