Skip to content

Commit 388c645

Browse files
committed
Merge tag 'spdx-5.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx
Pull SPDX fix from Greg KH: "Here is a single SPDX fixup for 5.5-rc1 It resolves an issue where we had missed a few .h files with the auto-tagging scripts because they had "GPL" text in strings within the file themselves. This single patch fixes up the issue and provides the proper SPDX tags at the top of them as needed. This patch has been in linux-next for many many weeks now with no reported issues" * tag 'spdx-5.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx: export,module: add SPDX GPL-2.0 license identifier to headers with no license
2 parents 537bd0a + bf49d9d commit 388c645

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

include/asm-generic/export.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* SPDX-License-Identifier: GPL-2.0-only */
12
#ifndef __ASM_GENERIC_EXPORT_H
23
#define __ASM_GENERIC_EXPORT_H
34

include/linux/export.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* SPDX-License-Identifier: GPL-2.0-only */
12
#ifndef _LINUX_EXPORT_H
23
#define _LINUX_EXPORT_H
34

include/linux/license.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* SPDX-License-Identifier: GPL-2.0-only */
12
#ifndef __LICENSE_H
23
#define __LICENSE_H
34

include/linux/module.h

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
#ifndef _LINUX_MODULE_H
2-
#define _LINUX_MODULE_H
1+
/* SPDX-License-Identifier: GPL-2.0-only */
32
/*
43
* Dynamic loading of modules into the kernel.
54
*
65
* Rewritten by Richard Henderson <[email protected]> Dec 1996
76
* Rewritten again by Rusty Russell, 2002
87
*/
8+
9+
#ifndef _LINUX_MODULE_H
10+
#define _LINUX_MODULE_H
11+
912
#include <linux/list.h>
1013
#include <linux/stat.h>
1114
#include <linux/compiler.h>

0 commit comments

Comments
 (0)