]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
checkpatch: update the FSF/GPL address check
authorJoe Perches <joe@perches.com>
Thu, 23 Jan 2014 23:54:48 +0000 (15:54 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 24 Jan 2014 00:36:58 +0000 (16:36 -0800)
The FSF address check is a bit too verbose looking for the GPL text.
Quiet it a bit by requiring --strict for the GPL bit.

Also make the address tests match a few uses of abbreviations for street
names and make it case insensitive.

Signed-off-by: Joe Perches <joe@perches.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Cc: Manfred Spraul <manfred@colorfullife.com>
Cc: Andy Whitcroft <apw@canonical.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
scripts/checkpatch.pl

index 57f10db4accde6a935e5ee37332a70df3bb54b33..82fd120df0c268ee223e16ce105428506caeaa67 100755 (executable)
@@ -1970,15 +1970,16 @@ sub process {
                }
 
 # Check for FSF mailing addresses.
-               if ($rawline =~ /You should have received a copy/ ||
-                   $rawline =~ /write to the Free Software/ ||
-                   $rawline =~ /59 Temple Place/ ||
-                   $rawline =~ /51 Franklin Street/) {
+               if ($rawline =~ /\bYou should have received a copy/i ||
+                   $rawline =~ /\bwrite to the Free/i ||
+                   $rawline =~ /\b59\s+Temple\s+Pl/i ||
+                   $rawline =~ /\b51\s+Franklin\s+St/i) {
                        my $herevet = "$here\n" . cat_vet($rawline) . "\n";
                        my $msg_type = \&ERROR;
                        $msg_type = \&CHK if ($file);
+                       $msg_type = \&CHK if ($rawline =~ /\bYou should have received a copy/i);
                        &{$msg_type}("FSF_MAILING_ADDRESS",
-                               "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)
+                                    "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)
                }
 
 # check for Kconfig help text having a real description