* [PATCH 11/27] kbuild, clk: bcm2835: remove MODULE_LICENSE in non-modules [not found] <20230222121453.91915-1-nick.alcock@oracle.com> @ 2023-02-22 12:14 ` Nick Alcock 2023-02-22 23:43 ` Stephen Boyd 2023-03-06 19:29 ` Stephen Boyd 2023-02-22 12:14 ` [PATCH 12/27] kbuild, clk: " Nick Alcock 1 sibling, 2 replies; 8+ messages in thread From: Nick Alcock @ 2023-02-22 12:14 UTC (permalink / raw) To: mcgrof Cc: linux-modules, linux-kernel, Hitomi Hasegawa, Michael Turquette, Stephen Boyd, Florian Fainelli, Ray Jui, Scott Branden, linux-clk, linux-rpi-kernel, linux-arm-kernel 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: Michael Turquette <mturquette@baylibre.com> Cc: Stephen Boyd <sboyd@kernel.org> Cc: Florian Fainelli <f.fainelli@gmail.com> Cc: Ray Jui <rjui@broadcom.com> Cc: Scott Branden <sbranden@broadcom.com> Cc: linux-clk@vger.kernel.org Cc: linux-rpi-kernel@lists.infradead.org Cc: linux-arm-kernel@lists.infradead.org --- drivers/clk/bcm/clk-bcm2835-aux.c | 1 - drivers/clk/bcm/clk-bcm2835.c | 1 - 2 files changed, 2 deletions(-) diff --git a/drivers/clk/bcm/clk-bcm2835-aux.c b/drivers/clk/bcm/clk-bcm2835-aux.c index 290a2846a86b..0fafa5cba442 100644 --- a/drivers/clk/bcm/clk-bcm2835-aux.c +++ b/drivers/clk/bcm/clk-bcm2835-aux.c @@ -69,4 +69,3 @@ builtin_platform_driver(bcm2835_aux_clk_driver); MODULE_AUTHOR("Eric Anholt <eric@anholt.net>"); MODULE_DESCRIPTION("BCM2835 auxiliary peripheral clock driver"); -MODULE_LICENSE("GPL"); diff --git a/drivers/clk/bcm/clk-bcm2835.c b/drivers/clk/bcm/clk-bcm2835.c index e74fe6219d14..8dc476ef5bf9 100644 --- a/drivers/clk/bcm/clk-bcm2835.c +++ b/drivers/clk/bcm/clk-bcm2835.c @@ -2350,4 +2350,3 @@ builtin_platform_driver(bcm2835_clk_driver); MODULE_AUTHOR("Eric Anholt <eric@anholt.net>"); MODULE_DESCRIPTION("BCM2835 clock driver"); -MODULE_LICENSE("GPL"); -- 2.39.1.268.g9de2f9a303 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 11/27] kbuild, clk: bcm2835: remove MODULE_LICENSE in non-modules 2023-02-22 12:14 ` [PATCH 11/27] kbuild, clk: bcm2835: remove MODULE_LICENSE in non-modules Nick Alcock @ 2023-02-22 23:43 ` Stephen Boyd 2023-02-23 1:36 ` Luis Chamberlain 2023-03-06 19:29 ` Stephen Boyd 1 sibling, 1 reply; 8+ messages in thread From: Stephen Boyd @ 2023-02-22 23:43 UTC (permalink / raw) To: Nick Alcock, mcgrof Cc: linux-modules, linux-kernel, Hitomi Hasegawa, Michael Turquette, Florian Fainelli, Ray Jui, Scott Branden, linux-clk, linux-rpi-kernel, linux-arm-kernel Quoting Nick Alcock (2023-02-22 04:14:37) > 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: Michael Turquette <mturquette@baylibre.com> > Cc: Stephen Boyd <sboyd@kernel.org> > Cc: Florian Fainelli <f.fainelli@gmail.com> > Cc: Ray Jui <rjui@broadcom.com> > Cc: Scott Branden <sbranden@broadcom.com> > Cc: linux-clk@vger.kernel.org > Cc: linux-rpi-kernel@lists.infradead.org > Cc: linux-arm-kernel@lists.infradead.org > --- Acked-by: Stephen Boyd <sboyd@kernel.org> Unless you want me to pick this up? ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 11/27] kbuild, clk: bcm2835: remove MODULE_LICENSE in non-modules 2023-02-22 23:43 ` Stephen Boyd @ 2023-02-23 1:36 ` Luis Chamberlain 0 siblings, 0 replies; 8+ messages in thread From: Luis Chamberlain @ 2023-02-23 1:36 UTC (permalink / raw) To: Stephen Boyd Cc: Nick Alcock, linux-modules, linux-kernel, Hitomi Hasegawa, Michael Turquette, Florian Fainelli, Ray Jui, Scott Branden, linux-clk, linux-rpi-kernel, linux-arm-kernel On Wed, Feb 22, 2023 at 03:43:40PM -0800, Stephen Boyd wrote: > Quoting Nick Alcock (2023-02-22 04:14:37) > > 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: Michael Turquette <mturquette@baylibre.com> > > Cc: Stephen Boyd <sboyd@kernel.org> > > Cc: Florian Fainelli <f.fainelli@gmail.com> > > Cc: Ray Jui <rjui@broadcom.com> > > Cc: Scott Branden <sbranden@broadcom.com> > > Cc: linux-clk@vger.kernel.org > > Cc: linux-rpi-kernel@lists.infradead.org > > Cc: linux-arm-kernel@lists.infradead.org > > --- > > Acked-by: Stephen Boyd <sboyd@kernel.org> > > Unless you want me to pick this up? Up to you, you can pick it up, and by rc3 of the next kernel I pick up the last stragglers that no one picks up as reflected on linux-next. Luis ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 11/27] kbuild, clk: bcm2835: remove MODULE_LICENSE in non-modules 2023-02-22 12:14 ` [PATCH 11/27] kbuild, clk: bcm2835: remove MODULE_LICENSE in non-modules Nick Alcock 2023-02-22 23:43 ` Stephen Boyd @ 2023-03-06 19:29 ` Stephen Boyd 1 sibling, 0 replies; 8+ messages in thread From: Stephen Boyd @ 2023-03-06 19:29 UTC (permalink / raw) To: Nick Alcock, mcgrof Cc: linux-modules, linux-kernel, Hitomi Hasegawa, Michael Turquette, Florian Fainelli, Ray Jui, Scott Branden, linux-clk, linux-rpi-kernel, linux-arm-kernel Quoting Nick Alcock (2023-02-22 04:14:37) > 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: Michael Turquette <mturquette@baylibre.com> > Cc: Stephen Boyd <sboyd@kernel.org> > Cc: Florian Fainelli <f.fainelli@gmail.com> > Cc: Ray Jui <rjui@broadcom.com> > Cc: Scott Branden <sbranden@broadcom.com> > Cc: linux-clk@vger.kernel.org > Cc: linux-rpi-kernel@lists.infradead.org > Cc: linux-arm-kernel@lists.infradead.org > --- Applied to clk-fixes ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 12/27] kbuild, clk: remove MODULE_LICENSE in non-modules [not found] <20230222121453.91915-1-nick.alcock@oracle.com> 2023-02-22 12:14 ` [PATCH 11/27] kbuild, clk: bcm2835: remove MODULE_LICENSE in non-modules Nick Alcock @ 2023-02-22 12:14 ` Nick Alcock 2023-02-22 12:41 ` Conor Dooley ` (2 more replies) 1 sibling, 3 replies; 8+ messages in thread From: Nick Alcock @ 2023-02-22 12:14 UTC (permalink / raw) To: mcgrof Cc: linux-modules, linux-kernel, Hitomi Hasegawa, Michael Turquette, Stephen Boyd, linux-clk 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: Michael Turquette <mturquette@baylibre.com> Cc: Stephen Boyd <sboyd@kernel.org> Cc: linux-clk@vger.kernel.org --- drivers/clk/clk-fixed-mmio.c | 1 - drivers/clk/clk-fsl-sai.c | 1 - drivers/clk/hisilicon/clk-hi3559a.c | 1 - drivers/clk/microchip/clk-mpfs-ccc.c | 1 - 4 files changed, 4 deletions(-) diff --git a/drivers/clk/clk-fixed-mmio.c b/drivers/clk/clk-fixed-mmio.c index 5225d17d6b3f..8609fca29cc4 100644 --- a/drivers/clk/clk-fixed-mmio.c +++ b/drivers/clk/clk-fixed-mmio.c @@ -99,4 +99,3 @@ module_platform_driver(of_fixed_mmio_clk_driver); MODULE_AUTHOR("Jan Kotas <jank@cadence.com>"); MODULE_DESCRIPTION("Memory Mapped IO Fixed clock driver"); -MODULE_LICENSE("GPL v2"); diff --git a/drivers/clk/clk-fsl-sai.c b/drivers/clk/clk-fsl-sai.c index 6238fcea0467..ee5baf993ff2 100644 --- a/drivers/clk/clk-fsl-sai.c +++ b/drivers/clk/clk-fsl-sai.c @@ -88,5 +88,4 @@ module_platform_driver(fsl_sai_clk_driver); MODULE_DESCRIPTION("Freescale SAI bitclock-as-a-clock driver"); MODULE_AUTHOR("Michael Walle <michael@walle.cc>"); -MODULE_LICENSE("GPL"); MODULE_ALIAS("platform:fsl-sai-clk"); diff --git a/drivers/clk/hisilicon/clk-hi3559a.c b/drivers/clk/hisilicon/clk-hi3559a.c index 9ea1a80acbe8..8036bd8cbb0a 100644 --- a/drivers/clk/hisilicon/clk-hi3559a.c +++ b/drivers/clk/hisilicon/clk-hi3559a.c @@ -841,5 +841,4 @@ static void __exit hi3559av100_crg_exit(void) module_exit(hi3559av100_crg_exit); -MODULE_LICENSE("GPL v2"); MODULE_DESCRIPTION("HiSilicon Hi3559AV100 CRG Driver"); diff --git a/drivers/clk/microchip/clk-mpfs-ccc.c b/drivers/clk/microchip/clk-mpfs-ccc.c index 32aae880a14f..6ee92c7925d7 100644 --- a/drivers/clk/microchip/clk-mpfs-ccc.c +++ b/drivers/clk/microchip/clk-mpfs-ccc.c @@ -293,4 +293,3 @@ module_exit(clk_ccc_exit); MODULE_DESCRIPTION("Microchip PolarFire SoC Clock Conditioning Circuitry Driver"); MODULE_AUTHOR("Conor Dooley <conor.dooley@microchip.com>"); -MODULE_LICENSE("GPL"); -- 2.39.1.268.g9de2f9a303 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 12/27] kbuild, clk: remove MODULE_LICENSE in non-modules 2023-02-22 12:14 ` [PATCH 12/27] kbuild, clk: " Nick Alcock @ 2023-02-22 12:41 ` Conor Dooley 2023-02-22 23:43 ` Stephen Boyd 2023-03-06 19:29 ` [PATCH 12/27] kbuild, clk: remove MODULE_LICENSE in non-modules Stephen Boyd 2 siblings, 0 replies; 8+ messages in thread From: Conor Dooley @ 2023-02-22 12:41 UTC (permalink / raw) To: Nick Alcock Cc: mcgrof, linux-modules, linux-kernel, Hitomi Hasegawa, Michael Turquette, Stephen Boyd, linux-clk [-- Attachment #1: Type: text/plain, Size: 1293 bytes --] On Wed, Feb 22, 2023 at 12:14:38PM +0000, Nick Alcock wrote: > 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: Michael Turquette <mturquette@baylibre.com> > Cc: Stephen Boyd <sboyd@kernel.org> > Cc: linux-clk@vger.kernel.org > drivers/clk/microchip/clk-mpfs-ccc.c | 1 - Reviewed-by: Conor Dooley <conor.dooley@microchip.com> And since there's no reason to have this split via the at91 tree: Acked-by: Conor Dooley <conor.dooley@microchip.com> Clearly there's a hole in my maintainers entry for this driver, I'll go fix that. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 228 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* (no subject) 2023-02-22 12:14 ` [PATCH 12/27] kbuild, clk: " Nick Alcock 2023-02-22 12:41 ` Conor Dooley @ 2023-02-22 23:43 ` Stephen Boyd 2023-03-06 19:29 ` [PATCH 12/27] kbuild, clk: remove MODULE_LICENSE in non-modules Stephen Boyd 2 siblings, 0 replies; 8+ messages in thread From: Stephen Boyd @ 2023-02-22 23:43 UTC (permalink / raw) To: Nick Alcock, mcgrof Cc: linux-modules, linux-kernel, Hitomi Hasegawa, Michael Turquette, linux-clk Quoting Nick Alcock (2023-02-22 04:14:38) > 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: Michael Turquette <mturquette@baylibre.com> > Cc: Stephen Boyd <sboyd@kernel.org> > Cc: linux-clk@vger.kernel.org > --- Acked-by: Stephen Boyd <sboyd@kernel.org> ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 12/27] kbuild, clk: remove MODULE_LICENSE in non-modules 2023-02-22 12:14 ` [PATCH 12/27] kbuild, clk: " Nick Alcock 2023-02-22 12:41 ` Conor Dooley 2023-02-22 23:43 ` Stephen Boyd @ 2023-03-06 19:29 ` Stephen Boyd 2 siblings, 0 replies; 8+ messages in thread From: Stephen Boyd @ 2023-03-06 19:29 UTC (permalink / raw) To: Nick Alcock, mcgrof Cc: linux-modules, linux-kernel, Hitomi Hasegawa, Michael Turquette, linux-clk Quoting Nick Alcock (2023-02-22 04:14:38) > 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: Michael Turquette <mturquette@baylibre.com> > Cc: Stephen Boyd <sboyd@kernel.org> > Cc: linux-clk@vger.kernel.org > --- Applied to clk-fixes ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-03-06 19:30 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20230222121453.91915-1-nick.alcock@oracle.com>
2023-02-22 12:14 ` [PATCH 11/27] kbuild, clk: bcm2835: remove MODULE_LICENSE in non-modules Nick Alcock
2023-02-22 23:43 ` Stephen Boyd
2023-02-23 1:36 ` Luis Chamberlain
2023-03-06 19:29 ` Stephen Boyd
2023-02-22 12:14 ` [PATCH 12/27] kbuild, clk: " Nick Alcock
2023-02-22 12:41 ` Conor Dooley
2023-02-22 23:43 ` Stephen Boyd
2023-03-06 19:29 ` [PATCH 12/27] kbuild, clk: remove MODULE_LICENSE in non-modules Stephen Boyd
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox