aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/checkpatch.pl
diff options
context:
space:
mode:
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 eefef65fa584..1d7924ad3a34 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -1665,7 +1665,7 @@ sub process {
1665 # Should not end with a space. 1665 # Should not end with a space.
1666 $to =~ s/\s+$//; 1666 $to =~ s/\s+$//;
1667 # '*'s should not have spaces between. 1667 # '*'s should not have spaces between.
1668 while ($to =~ s/(.)\s\*/$1\*/) { 1668 while ($to =~ s/\*\s+\*/\*\*/) {
1669 } 1669 }
1670 1670
1671 #print "from<$from> to<$to>\n"; 1671 #print "from<$from> to<$to>\n";
@@ -1680,7 +1680,7 @@ sub process {
1680 # Should not end with a space. 1680 # Should not end with a space.
1681 $to =~ s/\s+$//; 1681 $to =~ s/\s+$//;
1682 # '*'s should not have spaces between. 1682 # '*'s should not have spaces between.
1683 while ($to =~ s/(.)\s\*/$1\*/) { 1683 while ($to =~ s/\*\s+\*/\*\*/) {
1684 } 1684 }
1685 # Modifiers should have spaces. 1685 # Modifiers should have spaces.
1686 $to =~ s/(\b$Modifier$)/$1 /; 1686 $to =~ s/(\b$Modifier$)/$1 /;