We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0616016 commit 4a40468Copy full SHA for 4a40468
1 file changed
scripts/checkpatch.pl
@@ -2639,18 +2639,6 @@ sub process {
2639
}
2640
2641
2642
-# Check for added, moved or deleted files
2643
- if (!$reported_maintainer_file && !$in_commit_log &&
2644
- ($line =~ /^(?:new|deleted) file mode\s*\d+\s*$/ ||
2645
- $line =~ /^rename (?:from|to) [\w\/\.\-]+\s*$/ ||
2646
- ($line =~ /\{\s*([\w\/\.\-]*)\s*\=\>\s*([\w\/\.\-]*)\s*\}/ &&
2647
- (defined($1) || defined($2))))) {
2648
- $is_patch = 1;
2649
- $reported_maintainer_file = 1;
2650
- WARN("FILE_PATH_CHANGES",
2651
- "added, moved or deleted file(s), does MAINTAINERS need updating?\n" . $herecurr);
2652
- }
2653
-
2654
# Check for wrappage within a valid hunk of the file
2655
if ($realcnt != 0 && $line !~ m{^(?:\+|-| |\\ No newline|$)}) {
2656
ERROR("CORRUPTED_PATCH",
0 commit comments