diff options
author | Don Slutz <Don@CloudSwitch.com> | 2012-09-02 19:22:36 -0400 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-09-05 19:17:49 +0000 |
commit | 5424302e56ca587b665e3f409c4daa1bc2ff1cf7 (patch) | |
tree | 5f3cbf3d3487d2d553554230f2a339ceb8b7334c /scripts | |
parent | a99ac041e9f30dafb0afa326ddbeb8a481ba3f81 (diff) |
CHECKPATCH: Add --debug adv_checking
Add debug options to find this issue. They were not listed
in the help because the are not simple to understand the output of.
Signed-off-by: Don Slutz <Don@CloudSwitch.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checkpatch.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 0b0f3f379b..8c83b56c6a 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -98,6 +98,7 @@ my $dbg_possible = 0; my $dbg_type = 0; my $dbg_attr = 0; my $dbg_adv_dcs = 0; +my $dbg_adv_checking = 0; for my $key (keys %debug) { ## no critic eval "\${dbg_$key} = '$debug{$key}';"; @@ -2549,7 +2550,8 @@ sub process { # Check the condition. my ($cond, $block) = @{$chunks[0]}; - #print "CHECKING<$linenr> cond<$cond> block<$block>\n"; + print "CHECKING<$linenr> cond<$cond> block<$block>\n" + if $dbg_adv_checking; if (defined $cond) { substr($block, 0, length($cond), ''); } |