Message ID | 1540292769-5905-2-git-send-email-stefan.wahren@i2se.com (mailing list archive) |
---|---|
State | Accepted, archived |
Headers | show |
Series | Fix MODULE_LICENSE of bcm2835 drivers | expand |
Stefan Wahren <stefan.wahren@i2se.com> writes: > The license text is specifying GPL v2 or later but the MODULE_LICENSE > is set to GPL v2 which means GNU Public License v2 only. So choose the > license text as the correct one. > > Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com> For the series: Reviewed-by: Eric Anholt <eric@anholt.net>
Quoting Stefan Wahren (2018-10-23 04:06:06) > The license text is specifying GPL v2 or later but the MODULE_LICENSE > is set to GPL v2 which means GNU Public License v2 only. So choose the > license text as the correct one. > > Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com> > --- Applied to clk-next
diff --git a/drivers/clk/bcm/clk-bcm2835-aux.c b/drivers/clk/bcm/clk-bcm2835-aux.c index f225ad2..e01d557 100644 --- a/drivers/clk/bcm/clk-bcm2835-aux.c +++ b/drivers/clk/bcm/clk-bcm2835-aux.c @@ -79,4 +79,4 @@ builtin_platform_driver(bcm2835_aux_clk_driver); MODULE_AUTHOR("Eric Anholt <eric@anholt.net>"); MODULE_DESCRIPTION("BCM2835 auxiliary peripheral clock driver"); -MODULE_LICENSE("GPL v2"); +MODULE_LICENSE("GPL"); diff --git a/drivers/clk/bcm/clk-bcm2835.c b/drivers/clk/bcm/clk-bcm2835.c index 7bef066..6b6d836 100644 --- a/drivers/clk/bcm/clk-bcm2835.c +++ b/drivers/clk/bcm/clk-bcm2835.c @@ -2206,4 +2206,4 @@ builtin_platform_driver(bcm2835_clk_driver); MODULE_AUTHOR("Eric Anholt <eric@anholt.net>"); MODULE_DESCRIPTION("BCM2835 clock driver"); -MODULE_LICENSE("GPL v2"); +MODULE_LICENSE("GPL");
The license text is specifying GPL v2 or later but the MODULE_LICENSE is set to GPL v2 which means GNU Public License v2 only. So choose the license text as the correct one. Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com> --- drivers/clk/bcm/clk-bcm2835-aux.c | 2 +- drivers/clk/bcm/clk-bcm2835.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)