diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2019-06-02 10:22:38 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-06-02 10:22:38 -0700 |
commit | a68dc6188242e1cc6f72eb3361e71633b4bc02a7 (patch) | |
tree | 0b4d0e5aacde520f9f4b3751c984118888ba88b9 /arch/arm | |
parent | 460b48a0fefce25beb0fc0139e721c5691d65d7f (diff) | |
parent | 8e82fe2ab65a80b1526b285c661ab88cc5891e3a (diff) | |
download | linux-a68dc6188242e1cc6f72eb3361e71633b4bc02a7.tar.gz linux-a68dc6188242e1cc6f72eb3361e71633b4bc02a7.tar.bz2 linux-a68dc6188242e1cc6f72eb3361e71633b4bc02a7.zip |
Merge tag 'spdx-5.2-rc3-2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core
Pull SPDX fixes from Greg KH:
"Here are just two small patches, that fix up some found SPDX
identifier issues.
The first patch fixes an error in a previous SPDX fixup patch, that
causes build errors when doing 'make clean' on the tree (the fact that
almost no one noticed it reflects the fact that kernel developers
don't like doing that option very often...)
The second patch fixes up a number of places in the tree where people
mistyped the string "SPDX-License-Identifier". Given that people can
not even type their own name all the time without mistakes, this was
bound to happen, and odds are, we will have to add some type of check
for this to checkpatch.pl to catch this happening in the future.
Both of these have passed testing by 0-day"
* tag 'spdx-5.2-rc3-2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core:
treewide: fix typos of SPDX-License-Identifier
crypto: ux500 - fix license comment syntax error
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/kernel/bugs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/kernel/bugs.c b/arch/arm/kernel/bugs.c index d41d3598e5e5..14c8dbbb7d2d 100644 --- a/arch/arm/kernel/bugs.c +++ b/arch/arm/kernel/bugs.c @@ -1,4 +1,4 @@ -// SPDX-Identifier: GPL-2.0 +// SPDX-License-Identifier: GPL-2.0 #include <linux/init.h> #include <asm/bugs.h> #include <asm/proc-fns.h> |