diff options
author | Andy Whitcroft <apw@shadowen.org> | 2008-07-24 00:29:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-24 13:47:26 -0400 |
commit | 292f1a9b342d763f94ea3915726a48905be4acd1 (patch) | |
tree | 599e54b48cddb386cd373520ad85a4dc13b7087d /scripts/checkpatch.pl | |
parent | 74048ed811152a995a88945ba9e0dded34adfff4 (diff) |
checkpatch: complex macros need to ignore comments
Ensure we ignore comments in complex macro detection else we incorrectly
report this:
#define PFM_GROUP_PERM_ANY -1 /* any user/group */
Signed-off-by: Andy Whitcroft <apw@shadowen.org>
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-x | scripts/checkpatch.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 8afa88aaed96..96a762be5748 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -1972,6 +1972,7 @@ sub process { | |||
1972 | } else { | 1972 | } else { |
1973 | $dstat =~ s/^.\s*\#\s*define\s+$Ident\s*//; | 1973 | $dstat =~ s/^.\s*\#\s*define\s+$Ident\s*//; |
1974 | } | 1974 | } |
1975 | $dstat =~ s/$;//g; | ||
1975 | $dstat =~ s/\\\n.//g; | 1976 | $dstat =~ s/\\\n.//g; |
1976 | $dstat =~ s/^\s*//s; | 1977 | $dstat =~ s/^\s*//s; |
1977 | $dstat =~ s/\s*$//s; | 1978 | $dstat =~ s/\s*$//s; |