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 89

Based on 1 normalized pattern(s):

this program is free software you can redistribute it and or modify
it under the terms of the gnu general public license version 2 or
later as published by the free software foundation this program is
distributed in the hope that 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-or-later

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

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Richard Fontana <rfontana@redhat.com>
Reviewed-by: Allison Randal <allison@lohutok.net>
Cc: linux-spdx@vger.kernel.org
Link: https://lkml.kernel.org/r/20190520075211.856638608@linutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Thomas Gleixner and committed by
Greg Kroah-Hartman
cd5e85f5 954d796a

+6 -61
+1 -9
drivers/leds/leds-cpcap.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 * Copyright (c) 2017 Sebastian Reichel <sre@kernel.org> 3 - * 4 - * This program is free software; you can redistribute it and/or modify 5 - * it under the terms of the GNU General Public License version 2 or 6 - * later as published by the Free Software Foundation. 7 - * 8 - * This program is distributed in the hope that it will be useful, 9 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 - * GNU General Public License for more details. 12 4 */ 13 5 14 6 #include <linux/leds.h>
+1 -12
tools/thermal/tmon/pid.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 * pid.c PID controller for testing cooling devices 3 4 * 4 - * 5 - * 6 5 * Copyright (C) 2012 Intel Corporation. All rights reserved. 7 6 * 8 - * This program is free software; you can redistribute it and/or 9 - * modify it under the terms of the GNU General Public License version 10 - * 2 or later as published by the Free Software Foundation. 11 - * 12 - * This program is distributed in the hope that it will be useful, 13 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 - * GNU General Public License for more details. 16 - * 17 7 * Author Name Jacob Pan <jacob.jun.pan@linux.intel.com> 18 - * 19 8 */ 20 9 21 10 #include <unistd.h>
+1 -10
tools/thermal/tmon/sysfs.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 * sysfs.c sysfs ABI access functions for TMON program 3 4 * 4 5 * Copyright (C) 2013 Intel Corporation. All rights reserved. 5 6 * 6 - * This program is free software; you can redistribute it and/or 7 - * modify it under the terms of the GNU General Public License version 8 - * 2 or later as published by the Free Software Foundation. 9 - * 10 - * This program is distributed in the hope that it will be useful, 11 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 - * GNU General Public License for more details. 14 - * 15 7 * Author: Jacob Pan <jacob.jun.pan@linux.intel.com> 16 - * 17 8 */ 18 9 #include <unistd.h> 19 10 #include <stdio.h>
+1 -10
tools/thermal/tmon/tmon.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 * tmon.c Thermal Monitor (TMON) main function and entry point 3 4 * 4 5 * Copyright (C) 2012 Intel Corporation. All rights reserved. 5 6 * 6 - * This program is free software; you can redistribute it and/or 7 - * modify it under the terms of the GNU General Public License version 8 - * 2 or later as published by the Free Software Foundation. 9 - * 10 - * This program is distributed in the hope that it will be useful, 11 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 - * GNU General Public License for more details. 14 - * 15 7 * Author: Jacob Pan <jacob.jun.pan@linux.intel.com> 16 - * 17 8 */ 18 9 19 10 #include <getopt.h>
+1 -10
tools/thermal/tmon/tmon.h
··· 1 + /* SPDX-License-Identifier: GPL-2.0-or-later */ 1 2 /* 2 3 * tmon.h contains data structures and constants used by TMON 3 4 * 4 5 * Copyright (C) 2012 Intel Corporation. All rights reserved. 5 6 * 6 - * This program is free software; you can redistribute it and/or 7 - * modify it under the terms of the GNU General Public License version 8 - * 2 or later as published by the Free Software Foundation. 9 - * 10 - * This program is distributed in the hope that it will be useful, 11 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 - * GNU General Public License for more details. 14 - * 15 7 * Author Name Jacob Pan <jacob.jun.pan@linux.intel.com> 16 - * 17 8 */ 18 9 19 10 #ifndef TMON_H
+1 -10
tools/thermal/tmon/tui.c
··· 1 + // SPDX-License-Identifier: GPL-2.0-or-later 1 2 /* 2 3 * tui.c ncurses text user interface for TMON program 3 4 * 4 5 * Copyright (C) 2013 Intel Corporation. All rights reserved. 5 6 * 6 - * This program is free software; you can redistribute it and/or 7 - * modify it under the terms of the GNU General Public License version 8 - * 2 or later as published by the Free Software Foundation. 9 - * 10 - * This program is distributed in the hope that it will be useful, 11 - * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 - * GNU General Public License for more details. 14 - * 15 7 * Author: Jacob Pan <jacob.jun.pan@linux.intel.com> 16 - * 17 8 */ 18 9 19 10 #include <unistd.h>