diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2019-06-04 04:11:33 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-06-19 11:09:55 -0400 |
commit | d2912cb15bdda8ba4a5dd73396ad62641af2f520 (patch) | |
tree | ff723089c8673e3f99df3ddcdaeae7a52bd6fdac /arch/mips/ath79 | |
parent | 20c8ccb1975b8d5639789d1025ad6ada38bd6f48 (diff) |
treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500
Based on 2 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 as
published by the free software foundation
this program is free software you can redistribute it and or modify
it under the terms of the gnu general public license version 2 as
published by the free software foundation #
extracted by the scancode license scanner the SPDX license identifier
GPL-2.0-only
has been chosen to replace the boilerplate/reference in 4122 file(s).
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Enrico Weigelt <info@metux.net>
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Allison Randal <allison@lohutok.net>
Cc: linux-spdx@vger.kernel.org
Link: https://lkml.kernel.org/r/20190604081206.933168790@linutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/mips/ath79')
-rw-r--r-- | arch/mips/ath79/Makefile | 4 | ||||
-rw-r--r-- | arch/mips/ath79/clock.c | 5 | ||||
-rw-r--r-- | arch/mips/ath79/common.c | 5 | ||||
-rw-r--r-- | arch/mips/ath79/common.h | 5 | ||||
-rw-r--r-- | arch/mips/ath79/early_printk.c | 5 | ||||
-rw-r--r-- | arch/mips/ath79/prom.c | 5 | ||||
-rw-r--r-- | arch/mips/ath79/setup.c | 5 |
7 files changed, 7 insertions, 27 deletions
diff --git a/arch/mips/ath79/Makefile b/arch/mips/ath79/Makefile index e18d9a2ecf62..0fb3aaf42149 100644 --- a/arch/mips/ath79/Makefile +++ b/arch/mips/ath79/Makefile | |||
@@ -1,12 +1,10 @@ | |||
1 | # SPDX-License-Identifier: GPL-2.0-only | ||
1 | # | 2 | # |
2 | # Makefile for the Atheros AR71XX/AR724X/AR913X specific parts of the kernel | 3 | # Makefile for the Atheros AR71XX/AR724X/AR913X specific parts of the kernel |
3 | # | 4 | # |
4 | # Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org> | 5 | # Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org> |
5 | # Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> | 6 | # Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> |
6 | # | 7 | # |
7 | # This program is free software; you can redistribute it and/or modify it | ||
8 | # under the terms of the GNU General Public License version 2 as published | ||
9 | # by the Free Software Foundation. | ||
10 | 8 | ||
11 | obj-y := prom.o setup.o common.o clock.o | 9 | obj-y := prom.o setup.o common.o clock.o |
12 | 10 | ||
diff --git a/arch/mips/ath79/clock.c b/arch/mips/ath79/clock.c index 228cdc736db7..050f6553f398 100644 --- a/arch/mips/ath79/clock.c +++ b/arch/mips/ath79/clock.c | |||
@@ -1,3 +1,4 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Atheros AR71XX/AR724X/AR913X common routines | 3 | * Atheros AR71XX/AR724X/AR913X common routines |
3 | * | 4 | * |
@@ -5,10 +6,6 @@ | |||
5 | * Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org> | 6 | * Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org> |
6 | * | 7 | * |
7 | * Parts of this file are based on Atheros' 2.6.15/2.6.31 BSP | 8 | * Parts of this file are based on Atheros' 2.6.15/2.6.31 BSP |
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License version 2 as published | ||
11 | * by the Free Software Foundation. | ||
12 | */ | 9 | */ |
13 | 10 | ||
14 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
diff --git a/arch/mips/ath79/common.c b/arch/mips/ath79/common.c index cd6055f9e7a0..63eacb8b0eb5 100644 --- a/arch/mips/ath79/common.c +++ b/arch/mips/ath79/common.c | |||
@@ -1,3 +1,4 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Atheros AR71XX/AR724X/AR913X common routines | 3 | * Atheros AR71XX/AR724X/AR913X common routines |
3 | * | 4 | * |
@@ -6,10 +7,6 @@ | |||
6 | * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> | 7 | * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> |
7 | * | 8 | * |
8 | * Parts of this file are based on Atheros' 2.6.15/2.6.31 BSP | 9 | * Parts of this file are based on Atheros' 2.6.15/2.6.31 BSP |
9 | * | ||
10 | * This program is free software; you can redistribute it and/or modify it | ||
11 | * under the terms of the GNU General Public License version 2 as published | ||
12 | * by the Free Software Foundation. | ||
13 | */ | 10 | */ |
14 | 11 | ||
15 | #include <linux/kernel.h> | 12 | #include <linux/kernel.h> |
diff --git a/arch/mips/ath79/common.h b/arch/mips/ath79/common.h index 25b96f59e8e8..47fb66d7b282 100644 --- a/arch/mips/ath79/common.h +++ b/arch/mips/ath79/common.h | |||
@@ -1,3 +1,4 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0-only */ | ||
1 | /* | 2 | /* |
2 | * Atheros AR71XX/AR724X/AR913X common definitions | 3 | * Atheros AR71XX/AR724X/AR913X common definitions |
3 | * | 4 | * |
@@ -5,10 +6,6 @@ | |||
5 | * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> | 6 | * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> |
6 | * | 7 | * |
7 | * Parts of this file are based on Atheros' 2.6.15 BSP | 8 | * Parts of this file are based on Atheros' 2.6.15 BSP |
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License version 2 as published | ||
11 | * by the Free Software Foundation. | ||
12 | */ | 9 | */ |
13 | 10 | ||
14 | #ifndef __ATH79_COMMON_H | 11 | #ifndef __ATH79_COMMON_H |
diff --git a/arch/mips/ath79/early_printk.c b/arch/mips/ath79/early_printk.c index 4b1063117ef7..782732cd1a2b 100644 --- a/arch/mips/ath79/early_printk.c +++ b/arch/mips/ath79/early_printk.c | |||
@@ -1,12 +1,9 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Atheros AR7XXX/AR9XXX SoC early printk support | 3 | * Atheros AR7XXX/AR9XXX SoC early printk support |
3 | * | 4 | * |
4 | * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org> | 5 | * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org> |
5 | * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> | 6 | * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> |
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License version 2 as published | ||
9 | * by the Free Software Foundation. | ||
10 | */ | 7 | */ |
11 | 8 | ||
12 | #include <linux/io.h> | 9 | #include <linux/io.h> |
diff --git a/arch/mips/ath79/prom.c b/arch/mips/ath79/prom.c index 597899ad5438..25724b4e97fd 100644 --- a/arch/mips/ath79/prom.c +++ b/arch/mips/ath79/prom.c | |||
@@ -1,13 +1,10 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Atheros AR71XX/AR724X/AR913X specific prom routines | 3 | * Atheros AR71XX/AR724X/AR913X specific prom routines |
3 | * | 4 | * |
4 | * Copyright (C) 2015 Laurent Fasnacht <l@libres.ch> | 5 | * Copyright (C) 2015 Laurent Fasnacht <l@libres.ch> |
5 | * Copyright (C) 2008-2010 Gabor Juhos <juhosg@openwrt.org> | 6 | * Copyright (C) 2008-2010 Gabor Juhos <juhosg@openwrt.org> |
6 | * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> | 7 | * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License version 2 as published | ||
10 | * by the Free Software Foundation. | ||
11 | */ | 8 | */ |
12 | 9 | ||
13 | #include <linux/kernel.h> | 10 | #include <linux/kernel.h> |
diff --git a/arch/mips/ath79/setup.c b/arch/mips/ath79/setup.c index 298b46b4e9cb..f22538cae0ab 100644 --- a/arch/mips/ath79/setup.c +++ b/arch/mips/ath79/setup.c | |||
@@ -1,3 +1,4 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Atheros AR71XX/AR724X/AR913X specific setup | 3 | * Atheros AR71XX/AR724X/AR913X specific setup |
3 | * | 4 | * |
@@ -6,10 +7,6 @@ | |||
6 | * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> | 7 | * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> |
7 | * | 8 | * |
8 | * Parts of this file are based on Atheros' 2.6.15/2.6.31 BSP | 9 | * Parts of this file are based on Atheros' 2.6.15/2.6.31 BSP |
9 | * | ||
10 | * This program is free software; you can redistribute it and/or modify it | ||
11 | * under the terms of the GNU General Public License version 2 as published | ||
12 | * by the Free Software Foundation. | ||
13 | */ | 10 | */ |
14 | 11 | ||
15 | #include <linux/kernel.h> | 12 | #include <linux/kernel.h> |