aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/checkpatch.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/checkpatch.pl')
-rwxr-xr-xscripts/checkpatch.pl4
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 19e8e862c1b9..d89e4299c19d 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -1970,14 +1970,12 @@ sub process {
1970 } 1970 }
1971 1971
1972# Check for FSF mailing addresses. 1972# Check for FSF mailing addresses.
1973 if ($rawline =~ /\bYou should have received a copy/i || 1973 if ($rawline =~ /\bwrite to the Free/i ||
1974 $rawline =~ /\bwrite to the Free/i ||
1975 $rawline =~ /\b59\s+Temple\s+Pl/i || 1974 $rawline =~ /\b59\s+Temple\s+Pl/i ||
1976 $rawline =~ /\b51\s+Franklin\s+St/i) { 1975 $rawline =~ /\b51\s+Franklin\s+St/i) {
1977 my $herevet = "$here\n" . cat_vet($rawline) . "\n"; 1976 my $herevet = "$here\n" . cat_vet($rawline) . "\n";
1978 my $msg_type = \&ERROR; 1977 my $msg_type = \&ERROR;
1979 $msg_type = \&CHK if ($file); 1978 $msg_type = \&CHK if ($file);
1980 $msg_type = \&CHK if ($rawline =~ /\bYou should have received a copy/i);
1981 &{$msg_type}("FSF_MAILING_ADDRESS", 1979 &{$msg_type}("FSF_MAILING_ADDRESS",
1982 "Do not include the paragraph about writing to the Free Software Foundation's mailing address from the sample GPL notice. The FSF has changed addresses in the past, and may do so again. Linux already includes a copy of the GPL.\n" . $herevet) 1980 "Do not include the paragraph about writing to the Free Software Foundation's mailing address from the sample GPL notice. The FSF has changed addresses in the past, and may do so again. Linux already includes a copy of the GPL.\n" . $herevet)
1983 } 1981 }