diff options
author | Alexander Shishkin <alexander.shishkin@linux.intel.com> | 2018-03-28 11:46:15 -0400 |
---|---|---|
committer | Alexander Shishkin <alexander.shishkin@linux.intel.com> | 2018-03-28 11:47:19 -0400 |
commit | 50352fa730328b2e946fb912d495653b627c0bf9 (patch) | |
tree | ca54db7531c58066100b0bc766b5ed81e7b0fe66 | |
parent | 4f0c7c6a12906e3571abb3c2b93eca8f727f4c9c (diff) |
intel_th: Add SPDX GPL-2.0 header to replace GPLv2 boilerplate
This adds SPDX GPL-2.0 header to the Trace Hub driver and removes the
GPLv2 boilerplate text.
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
-rw-r--r-- | drivers/hwtracing/intel_th/core.c | 10 | ||||
-rw-r--r-- | drivers/hwtracing/intel_th/debug.c | 10 | ||||
-rw-r--r-- | drivers/hwtracing/intel_th/debug.h | 10 | ||||
-rw-r--r-- | drivers/hwtracing/intel_th/gth.c | 10 | ||||
-rw-r--r-- | drivers/hwtracing/intel_th/gth.h | 10 | ||||
-rw-r--r-- | drivers/hwtracing/intel_th/intel_th.h | 10 | ||||
-rw-r--r-- | drivers/hwtracing/intel_th/msu.c | 10 | ||||
-rw-r--r-- | drivers/hwtracing/intel_th/msu.h | 10 | ||||
-rw-r--r-- | drivers/hwtracing/intel_th/pci.c | 10 | ||||
-rw-r--r-- | drivers/hwtracing/intel_th/pti.c | 10 | ||||
-rw-r--r-- | drivers/hwtracing/intel_th/pti.h | 10 | ||||
-rw-r--r-- | drivers/hwtracing/intel_th/sth.c | 10 | ||||
-rw-r--r-- | drivers/hwtracing/intel_th/sth.h | 10 |
13 files changed, 13 insertions, 117 deletions
diff --git a/drivers/hwtracing/intel_th/core.c b/drivers/hwtracing/intel_th/core.c index 1a023e30488c..bf1e4543c722 100644 --- a/drivers/hwtracing/intel_th/core.c +++ b/drivers/hwtracing/intel_th/core.c | |||
@@ -1,16 +1,8 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * Intel(R) Trace Hub driver core | 3 | * Intel(R) Trace Hub driver core |
3 | * | 4 | * |
4 | * Copyright (C) 2014-2015 Intel Corporation. | 5 | * Copyright (C) 2014-2015 Intel Corporation. |
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms and conditions of the GNU General Public License, | ||
8 | * version 2, as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | * more details. | ||
14 | */ | 6 | */ |
15 | 7 | ||
16 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | 8 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
diff --git a/drivers/hwtracing/intel_th/debug.c b/drivers/hwtracing/intel_th/debug.c index 788a1f0a97ad..ff79063118a0 100644 --- a/drivers/hwtracing/intel_th/debug.c +++ b/drivers/hwtracing/intel_th/debug.c | |||
@@ -1,16 +1,8 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * Intel(R) Trace Hub driver debugging | 3 | * Intel(R) Trace Hub driver debugging |
3 | * | 4 | * |
4 | * Copyright (C) 2014-2015 Intel Corporation. | 5 | * Copyright (C) 2014-2015 Intel Corporation. |
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms and conditions of the GNU General Public License, | ||
8 | * version 2, as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | * more details. | ||
14 | */ | 6 | */ |
15 | 7 | ||
16 | #include <linux/types.h> | 8 | #include <linux/types.h> |
diff --git a/drivers/hwtracing/intel_th/debug.h b/drivers/hwtracing/intel_th/debug.h index 88311bad3ba4..78bd7e4bf9ce 100644 --- a/drivers/hwtracing/intel_th/debug.h +++ b/drivers/hwtracing/intel_th/debug.h | |||
@@ -1,16 +1,8 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0 */ | ||
1 | /* | 2 | /* |
2 | * Intel(R) Trace Hub driver debugging | 3 | * Intel(R) Trace Hub driver debugging |
3 | * | 4 | * |
4 | * Copyright (C) 2014-2015 Intel Corporation. | 5 | * Copyright (C) 2014-2015 Intel Corporation. |
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms and conditions of the GNU General Public License, | ||
8 | * version 2, as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | * more details. | ||
14 | */ | 6 | */ |
15 | 7 | ||
16 | #ifndef __INTEL_TH_DEBUG_H__ | 8 | #ifndef __INTEL_TH_DEBUG_H__ |
diff --git a/drivers/hwtracing/intel_th/gth.c b/drivers/hwtracing/intel_th/gth.c index 018678ec3c13..8426b7970c14 100644 --- a/drivers/hwtracing/intel_th/gth.c +++ b/drivers/hwtracing/intel_th/gth.c | |||
@@ -1,16 +1,8 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * Intel(R) Trace Hub Global Trace Hub | 3 | * Intel(R) Trace Hub Global Trace Hub |
3 | * | 4 | * |
4 | * Copyright (C) 2014-2015 Intel Corporation. | 5 | * Copyright (C) 2014-2015 Intel Corporation. |
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms and conditions of the GNU General Public License, | ||
8 | * version 2, as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | * more details. | ||
14 | */ | 6 | */ |
15 | 7 | ||
16 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | 8 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
diff --git a/drivers/hwtracing/intel_th/gth.h b/drivers/hwtracing/intel_th/gth.h index f3d234251a12..6f2b0b930875 100644 --- a/drivers/hwtracing/intel_th/gth.h +++ b/drivers/hwtracing/intel_th/gth.h | |||
@@ -1,16 +1,8 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0 */ | ||
1 | /* | 2 | /* |
2 | * Intel(R) Trace Hub Global Trace Hub (GTH) data structures | 3 | * Intel(R) Trace Hub Global Trace Hub (GTH) data structures |
3 | * | 4 | * |
4 | * Copyright (C) 2014-2015 Intel Corporation. | 5 | * Copyright (C) 2014-2015 Intel Corporation. |
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms and conditions of the GNU General Public License, | ||
8 | * version 2, as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | * more details. | ||
14 | */ | 6 | */ |
15 | 7 | ||
16 | #ifndef __INTEL_TH_GTH_H__ | 8 | #ifndef __INTEL_TH_GTH_H__ |
diff --git a/drivers/hwtracing/intel_th/intel_th.h b/drivers/hwtracing/intel_th/intel_th.h index 99ad563fc40d..cdeed3b017d0 100644 --- a/drivers/hwtracing/intel_th/intel_th.h +++ b/drivers/hwtracing/intel_th/intel_th.h | |||
@@ -1,16 +1,8 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0 */ | ||
1 | /* | 2 | /* |
2 | * Intel(R) Trace Hub data structures | 3 | * Intel(R) Trace Hub data structures |
3 | * | 4 | * |
4 | * Copyright (C) 2014-2015 Intel Corporation. | 5 | * Copyright (C) 2014-2015 Intel Corporation. |
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms and conditions of the GNU General Public License, | ||
8 | * version 2, as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | * more details. | ||
14 | */ | 6 | */ |
15 | 7 | ||
16 | #ifndef __INTEL_TH_H__ | 8 | #ifndef __INTEL_TH_H__ |
diff --git a/drivers/hwtracing/intel_th/msu.c b/drivers/hwtracing/intel_th/msu.c index dfb57eaa9f22..ede388309376 100644 --- a/drivers/hwtracing/intel_th/msu.c +++ b/drivers/hwtracing/intel_th/msu.c | |||
@@ -1,16 +1,8 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * Intel(R) Trace Hub Memory Storage Unit | 3 | * Intel(R) Trace Hub Memory Storage Unit |
3 | * | 4 | * |
4 | * Copyright (C) 2014-2015 Intel Corporation. | 5 | * Copyright (C) 2014-2015 Intel Corporation. |
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms and conditions of the GNU General Public License, | ||
8 | * version 2, as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | * more details. | ||
14 | */ | 6 | */ |
15 | 7 | ||
16 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | 8 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
diff --git a/drivers/hwtracing/intel_th/msu.h b/drivers/hwtracing/intel_th/msu.h index 9b710e4aa98a..9cc8aced6116 100644 --- a/drivers/hwtracing/intel_th/msu.h +++ b/drivers/hwtracing/intel_th/msu.h | |||
@@ -1,16 +1,8 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * Intel(R) Trace Hub Memory Storage Unit (MSU) data structures | 3 | * Intel(R) Trace Hub Memory Storage Unit (MSU) data structures |
3 | * | 4 | * |
4 | * Copyright (C) 2014-2015 Intel Corporation. | 5 | * Copyright (C) 2014-2015 Intel Corporation. |
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms and conditions of the GNU General Public License, | ||
8 | * version 2, as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | * more details. | ||
14 | */ | 6 | */ |
15 | 7 | ||
16 | #ifndef __INTEL_TH_MSU_H__ | 8 | #ifndef __INTEL_TH_MSU_H__ |
diff --git a/drivers/hwtracing/intel_th/pci.c b/drivers/hwtracing/intel_th/pci.c index c2a2ce8ee541..c2e55e5d97f6 100644 --- a/drivers/hwtracing/intel_th/pci.c +++ b/drivers/hwtracing/intel_th/pci.c | |||
@@ -1,16 +1,8 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * Intel(R) Trace Hub pci driver | 3 | * Intel(R) Trace Hub pci driver |
3 | * | 4 | * |
4 | * Copyright (C) 2014-2015 Intel Corporation. | 5 | * Copyright (C) 2014-2015 Intel Corporation. |
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms and conditions of the GNU General Public License, | ||
8 | * version 2, as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | * more details. | ||
14 | */ | 6 | */ |
15 | 7 | ||
16 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | 8 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
diff --git a/drivers/hwtracing/intel_th/pti.c b/drivers/hwtracing/intel_th/pti.c index e96a1fcb57b2..56694339cb06 100644 --- a/drivers/hwtracing/intel_th/pti.c +++ b/drivers/hwtracing/intel_th/pti.c | |||
@@ -1,16 +1,8 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * Intel(R) Trace Hub PTI output driver | 3 | * Intel(R) Trace Hub PTI output driver |
3 | * | 4 | * |
4 | * Copyright (C) 2014-2016 Intel Corporation. | 5 | * Copyright (C) 2014-2016 Intel Corporation. |
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms and conditions of the GNU General Public License, | ||
8 | * version 2, as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | * more details. | ||
14 | */ | 6 | */ |
15 | 7 | ||
16 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | 8 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
diff --git a/drivers/hwtracing/intel_th/pti.h b/drivers/hwtracing/intel_th/pti.h index 30827be67b4c..e9381babc84c 100644 --- a/drivers/hwtracing/intel_th/pti.h +++ b/drivers/hwtracing/intel_th/pti.h | |||
@@ -1,16 +1,8 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * Intel(R) Trace Hub PTI output data structures | 3 | * Intel(R) Trace Hub PTI output data structures |
3 | * | 4 | * |
4 | * Copyright (C) 2014-2015 Intel Corporation. | 5 | * Copyright (C) 2014-2015 Intel Corporation. |
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms and conditions of the GNU General Public License, | ||
8 | * version 2, as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | * more details. | ||
14 | */ | 6 | */ |
15 | 7 | ||
16 | #ifndef __INTEL_TH_STH_H__ | 8 | #ifndef __INTEL_TH_STH_H__ |
diff --git a/drivers/hwtracing/intel_th/sth.c b/drivers/hwtracing/intel_th/sth.c index b03444624648..4b7ae47789d2 100644 --- a/drivers/hwtracing/intel_th/sth.c +++ b/drivers/hwtracing/intel_th/sth.c | |||
@@ -1,16 +1,8 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * Intel(R) Trace Hub Software Trace Hub support | 3 | * Intel(R) Trace Hub Software Trace Hub support |
3 | * | 4 | * |
4 | * Copyright (C) 2014-2015 Intel Corporation. | 5 | * Copyright (C) 2014-2015 Intel Corporation. |
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms and conditions of the GNU General Public License, | ||
8 | * version 2, as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | * more details. | ||
14 | */ | 6 | */ |
15 | 7 | ||
16 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | 8 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
diff --git a/drivers/hwtracing/intel_th/sth.h b/drivers/hwtracing/intel_th/sth.h index f1390cd4f2ed..f97fc0c51739 100644 --- a/drivers/hwtracing/intel_th/sth.h +++ b/drivers/hwtracing/intel_th/sth.h | |||
@@ -1,16 +1,8 @@ | |||
1 | /* SPDX-License-Identifier: GPL-2.0 */ | ||
1 | /* | 2 | /* |
2 | * Intel(R) Trace Hub Software Trace Hub (STH) data structures | 3 | * Intel(R) Trace Hub Software Trace Hub (STH) data structures |
3 | * | 4 | * |
4 | * Copyright (C) 2014-2015 Intel Corporation. | 5 | * Copyright (C) 2014-2015 Intel Corporation. |
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms and conditions of the GNU General Public License, | ||
8 | * version 2, as published by the Free Software Foundation. | ||
9 | * | ||
10 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | * more details. | ||
14 | */ | 6 | */ |
15 | 7 | ||
16 | #ifndef __INTEL_TH_STH_H__ | 8 | #ifndef __INTEL_TH_STH_H__ |