mirror of https://gitee.com/openkylin/linux.git
SPDX fixes for 5.2-rc3, round 2
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. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -----BEGIN PGP SIGNATURE----- iG0EABECAC0WIQT0tgzFv3jCIUoxPcsxR9QN2y37KQUCXPNuiQ8cZ3JlZ0Brcm9h aC5jb20ACgkQMUfUDdst+ymt4ACgmqgJ5qJFr5UC/XLauYpl5IDXvH0AnjEgUb4h RQSKj2wjMzGpBYheamtx =tI3h -----END PGP SIGNATURE----- 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
This commit is contained in:
commit
a68dc61882
|
@ -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>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
#/*
|
||||
# * Copyright (C) ST-Ericsson SA 2010
|
||||
# * Author: shujuan.chen@stericsson.com for ST-Ericsson.
|
||||
*/
|
||||
# */
|
||||
|
||||
ccflags-$(CONFIG_CRYPTO_DEV_UX500_DEBUG) += -DDEBUG
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// SPDX-Licence-Identifier: GPL-2.0
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* STMicroelectronics STM32 USB PHY Controller driver
|
||||
*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// SPDX-Lincense-Identifier: GPL 2.0
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* R8A77980 processor support - PFC hardware block.
|
||||
*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// SPDX-Licenses: GPLv2
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* Test cases for compiler-based stack variable zeroing via future
|
||||
* compiler flags or CONFIG_GCC_PLUGIN_STRUCTLEAK*.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// SPDX-Licence-Identifier: GPL-2.0
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* MAX9759 Amplifier Driver
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue