dmaengine: remove MODULE_LICENSE in non-modules
authorNick Alcock <nick.alcock@oracle.com>
Tue, 7 Mar 2023 18:01:33 +0000 (18:01 +0000)
committerLuis Chamberlain <mcgrof@kernel.org>
Thu, 13 Apr 2023 20:13:51 +0000 (13:13 -0700)
Since commit 8b41fc4454e ("kbuild: create modules.builtin without
Makefile.modbuiltin or tristate.conf"), MODULE_LICENSE declarations
are used to identify modules. As a consequence, uses of the macro
in non-modules will cause modprobe to misidentify their containing
object file as a module when it is not (false positives), and modprobe
might succeed rather than failing with a suitable error message.

So remove it in the files in this commit, none of which can be built as
modules.

Signed-off-by: Nick Alcock <nick.alcock@oracle.com>
Suggested-by: Luis Chamberlain <mcgrof@kernel.org>
Cc: Luis Chamberlain <mcgrof@kernel.org>
Cc: linux-modules@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: Hitomi Hasegawa <hasegawa-hitomi@fujitsu.com>
Cc: Vinod Koul <vkoul@kernel.org>
Cc: dmaengine@vger.kernel.org
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
drivers/dma/ep93xx_dma.c
drivers/dma/ipu/ipu_idmac.c
drivers/dma/mv_xor_v2.c
drivers/dma/sh/shdma-base.c

index d19ea885c63e1e86bfc2c1624348fca8ffde2609..5338a94f1a69f00be71d7371d3dc991b5ff82319 100644 (file)
@@ -1431,4 +1431,3 @@ subsys_initcall(ep93xx_dma_module_init);
 
 MODULE_AUTHOR("Mika Westerberg <mika.westerberg@iki.fi>");
 MODULE_DESCRIPTION("EP93xx DMA driver");
-MODULE_LICENSE("GPL");
index baab1ca9f6214d20c04fdae1b8a0d71e10ab2e3f..d799b99c18bdafc90cbb03500c89048b2350cb9f 100644 (file)
@@ -1797,6 +1797,5 @@ static int __init ipu_init(void)
 subsys_initcall(ipu_init);
 
 MODULE_DESCRIPTION("IPU core driver");
-MODULE_LICENSE("GPL v2");
 MODULE_AUTHOR("Guennadi Liakhovetski <lg@denx.de>");
 MODULE_ALIAS("platform:ipu-core");
index 89790beba3052d3513f26531a8f4032d3b583d48..b4de7d4a3105c617fc927b0c29a7e1e94b2a2c99 100644 (file)
@@ -917,4 +917,3 @@ static struct platform_driver mv_xor_v2_driver = {
 module_platform_driver(mv_xor_v2_driver);
 
 MODULE_DESCRIPTION("DMA engine driver for Marvell's Version 2 of XOR engine");
-MODULE_LICENSE("GPL");
index 158e5e7defaeb0149ca8ffcaa34a30f21a98a42a..588c5f409a8087fde3a4e8a38ea3597199ac6f6f 100644 (file)
@@ -1047,6 +1047,5 @@ static void __exit shdma_exit(void)
 }
 module_exit(shdma_exit);
 
-MODULE_LICENSE("GPL v2");
 MODULE_DESCRIPTION("SH-DMA driver base library");
 MODULE_AUTHOR("Guennadi Liakhovetski <g.liakhovetski@gmx.de>");