public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] checkpatch: Only flag FSF address, not gnu.org URL
@ 2014-01-06 23:16 Alexander Duyck
  2014-01-06 23:27 ` Greg KH
  2014-01-06 23:57 ` Joe Perches
  0 siblings, 2 replies; 5+ messages in thread
From: Alexander Duyck @ 2014-01-06 23:16 UTC (permalink / raw)
  To: joe, gregkh, josh; +Cc: linux-kernel

This change restricts the check for the for the FSF address in the GPL
copyright statement so that it only flags the address, not the references to
the gnu.org/licenses URL which appear in numerous drivers.

So for example this statement will still return an error:
  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

However, this statement will not return an error after this patch:
  You should have received a copy of the GNU General Public License
  along with this program.  If not, see <http://www.gnu.org/licenses/>.

Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
---
 scripts/checkpatch.pl |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 9c98100..ba3c9c3 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -1963,8 +1963,7 @@ sub process {
 		}
 
 # Check for FSF mailing addresses.
-		if ($rawline =~ /You should have received a copy/ ||
-		    $rawline =~ /write to the Free Software/ ||
+		if ($rawline =~ /write to the Free Software/ ||
 		    $rawline =~ /59 Temple Place/ ||
 		    $rawline =~ /51 Franklin Street/) {
 			my $herevet = "$here\n" . cat_vet($rawline) . "\n";


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-01-06 23:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-06 23:16 [PATCH] checkpatch: Only flag FSF address, not gnu.org URL Alexander Duyck
2014-01-06 23:27 ` Greg KH
2014-01-06 23:52   ` H. Peter Anvin
2014-01-06 23:57     ` Alexander Duyck
2014-01-06 23:57 ` Joe Perches

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox