Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 253

Based on 1 normalized pattern(s):

license gplv2

and 1 additional normalized pattern(s):

this program is free software you can redistribute it and or modify it
under the terms and conditions of the gnu general public license version
2 as published by the free software foundation this program is
distributed in the hope it will be useful but without any warranty
without even the implied warranty of merchantability or fitness for a
particular purpose see the gnu general public license for more details

extracted by the scancode license scanner the SPDX license identifier

GPL-2.0-only

has been chosen to replace the boilerplate/reference in 5 file(s).

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Richard Fontana <rfontana@redhat.com>
Reviewed-by: Allison Randal <allison@lohutok.net>
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Steve Winslow <swinslow@gmail.com>
Reviewed-by: Alexios Zavras <alexios.zavras@intel.com>
Cc: linux-spdx@vger.kernel.org
Link: https://lkml.kernel.org/r/20190529141332.723143934@linutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Thomas Gleixner and committed by
Greg Kroah-Hartman
3e5580c4 c9af7f31

+3 -15
+1 -2
drivers/hwmon/ltc2990.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-only 1 2 /* 2 3 * Driver for Linear Technology LTC2990 power monitor 3 4 * 4 5 * Copyright (C) 2014 Topic Embedded Products 5 6 * Author: Mike Looijmans <mike.looijmans@topic.nl> 6 - * 7 - * License: GPLv2 8 7 */ 9 8 10 9 #include <linux/bitops.h>
+1 -2
drivers/iio/adc/ltc2471.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-only 1 2 /* 2 3 * Driver for Linear Technology LTC2471 and LTC2473 voltage monitors 3 4 * The LTC2473 is identical to the 2471, but reports a differential signal. 4 5 * 5 6 * Copyright (C) 2017 Topic Embedded Products 6 7 * Author: Mike Looijmans <mike.looijmans@topic.nl> 7 - * 8 - * License: GPLv2 9 8 */ 10 9 11 10 #include <linux/err.h>
+1 -11
tools/testing/selftests/net/tcp_inq.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-only 1 2 /* 2 3 * Copyright 2018 Google Inc. 3 4 * Author: Soheil Hassas Yeganeh (soheil@google.com) 4 5 * 5 6 * Simple example on how to use TCP_INQ and TCP_CM_INQ. 6 - * 7 - * License (GPLv2): 8 - * 9 - * This program is free software; you can redistribute it and/or modify it 10 - * under the terms and conditions of the GNU General Public License, 11 - * version 2, as published by the Free Software Foundation. 12 - * 13 - * This program is distributed in the hope it will be useful, but WITHOUT 14 - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 15 - * FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for 16 - * more details. 17 7 */ 18 8 #define _GNU_SOURCE 19 9