diff options
-rwxr-xr-x | scripts/checkpatch.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 10384cf40691..a0880ede3db9 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -4811,13 +4811,13 @@ sub process { | |||
4811 | } | 4811 | } |
4812 | } | 4812 | } |
4813 | 4813 | ||
4814 | # check for case / default statements not preceeded by break/fallthrough/switch | 4814 | # check for case / default statements not preceded by break/fallthrough/switch |
4815 | if ($line =~ /^.\s*(?:case\s+(?:$Ident|$Constant)\s*|default):/) { | 4815 | if ($line =~ /^.\s*(?:case\s+(?:$Ident|$Constant)\s*|default):/) { |
4816 | my $has_break = 0; | 4816 | my $has_break = 0; |
4817 | my $has_statement = 0; | 4817 | my $has_statement = 0; |
4818 | my $count = 0; | 4818 | my $count = 0; |
4819 | my $prevline = $linenr; | 4819 | my $prevline = $linenr; |
4820 | while ($prevline > 1 && $count < 3 && !$has_break) { | 4820 | while ($prevline > 1 && ($file || $count < 3) && !$has_break) { |
4821 | $prevline--; | 4821 | $prevline--; |
4822 | my $rline = $rawlines[$prevline - 1]; | 4822 | my $rline = $rawlines[$prevline - 1]; |
4823 | my $fline = $lines[$prevline - 1]; | 4823 | my $fline = $lines[$prevline - 1]; |