aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/checkpatch.pl
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2012-07-30 17:41:16 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2012-07-30 20:25:17 -0400
commitb34a26f3158cca932b6f1427b97fe12c7838ee68 (patch)
treee1c5e08259b56d444f6797c8e3e7b88cd4df64d5 /scripts/checkpatch.pl
parent4ed940d4c34c21a1a356969a923f2815d608e0bf (diff)
checkpatch: Update alignment check
Parenthesis alignment doesn't correctly check an existing line after an inserted or modified line with an open parenthesis. Fix it. Signed-off-by: Joe Perches <joe@perches.com> Cc: Andy Whitcroft <apw@canonical.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.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index e5bd60ff48e..630319acb82 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -1848,8 +1848,8 @@ sub process {
1848 1848
1849 my $pos = pos_last_openparen($rest); 1849 my $pos = pos_last_openparen($rest);
1850 if ($pos >= 0) { 1850 if ($pos >= 0) {
1851 $line =~ /^\+([ \t]*)/; 1851 $line =~ /^(\+| )([ \t]*)/;
1852 my $newindent = $1; 1852 my $newindent = $2;
1853 1853
1854 my $goodtabindent = $oldindent . 1854 my $goodtabindent = $oldindent .
1855 "\t" x ($pos / 8) . 1855 "\t" x ($pos / 8) .