Remove FSF address warning from checkpatch.
This often bites me when I'm merging changes from mainline, and never catches a real problem in this fork. Change-Id: I07f4c275db2c0bccb413eeba9ec1759b216f31a9 Signed-off-by: Tim Newsome <tim@sifive.com>
This commit is contained in:
parent
7420382a4d
commit
aa8d30a446
|
@ -1631,15 +1631,16 @@ sub process {
|
||||||
$rpt_cleaners = 1;
|
$rpt_cleaners = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($rawline =~ /\bwrite to the Free/i ||
|
# Don't care in this branch. This always messes up when we merge changes down.
|
||||||
$rawline =~ /\b59\s+Temple\s+Pl/i ||
|
#if ($rawline =~ /\bwrite to the Free/i ||
|
||||||
$rawline =~ /\b51\s+Franklin\s+St/i) {
|
# $rawline =~ /\b59\s+Temple\s+Pl/i ||
|
||||||
my $herevet = "$here\n" . cat_vet($rawline) . "\n";
|
# $rawline =~ /\b51\s+Franklin\s+St/i) {
|
||||||
ERROR("FSF_MAILING_ADDRESS",
|
# my $herevet = "$here\n" . cat_vet($rawline) . "\n";
|
||||||
"Do not include the paragraph about writing to the Free Software Foundation's mailing address " .
|
# ERROR("FSF_MAILING_ADDRESS",
|
||||||
"from the sample GPL notice. The FSF has changed addresses in the past, and may do so again. " .
|
# "Do not include the paragraph about writing to the Free Software Foundation's mailing address " .
|
||||||
"OpenOCD already includes a copy of the GPL.\n" . $herevet)
|
# "from the sample GPL notice. The FSF has changed addresses in the past, and may do so again. " .
|
||||||
}
|
# "OpenOCD already includes a copy of the GPL.\n" . $herevet)
|
||||||
|
#}
|
||||||
|
|
||||||
# check for Kconfig help text having a real description
|
# check for Kconfig help text having a real description
|
||||||
# Only applies when adding the entry originally, after that we do not have
|
# Only applies when adding the entry originally, after that we do not have
|
||||||
|
|
Loading…
Reference in New Issue