diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checkpatch.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 614999f29aa0..5f71b3050253 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -1244,6 +1244,10 @@ sub process { | |||
1244 | ERROR("switch and case should be at the same indent\n$hereline$err"); | 1244 | ERROR("switch and case should be at the same indent\n$hereline$err"); |
1245 | } | 1245 | } |
1246 | } | 1246 | } |
1247 | if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g && | ||
1248 | $line !~ /\G(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$/g) { | ||
1249 | ERROR("trailing statements should be on next line\n" . $herecurr); | ||
1250 | } | ||
1247 | 1251 | ||
1248 | # if/while/etc brace do not go on next line, unless defining a do while loop, | 1252 | # if/while/etc brace do not go on next line, unless defining a do while loop, |
1249 | # or if that brace on the next line is for something else | 1253 | # or if that brace on the next line is for something else |