* [PATCH 0/3] cxd2099: cleanup licensing
@ 2018-06-19 18:51 Daniel Scheller
2018-06-19 18:51 ` [PATCH 1/3] [media] dvb-frontends/cxd2099: fix MODULE_LICENSE to 'GPL v2' Daniel Scheller
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Daniel Scheller @ 2018-06-19 18:51 UTC (permalink / raw)
To: mchehab, mchehab, jasmin, rjkm, mvoelkel; +Cc: linux-media
From: Daniel Scheller <d.scheller@gmx.net>
Upstream committed a change to the dddvb driver package ([1]) that makes
things clear everything is licensed under the terms of the GPLv2-only.
So, apply the MODULE_LICENSE change to cxd2099 and, as things are sorted
now, apply SPDX license identifiers (and fix two spurious whitespaces).
Split from the series that touches all other Digital Devices drivers
since Jasmin is the maintainer for the cxd2099 driver.
Ralph/Manfred: Although all license related things should be clear by
now, please be so kind and send Acks (or complaints, if any) on these
patches so we can finally get rid of any mismatches in the in-kernel
drivers.
[1] https://github.com/DigitalDevices/dddvb/commit/3db30defab4bd5429f6563b084a215b83da01ea0
Daniel Scheller (3):
[media] dvb-frontends/cxd2099: fix MODULE_LICENSE to 'GPL v2'
[media] dvb-frontends/cxd2099: add SPDX license identifier
[media] dvb-frontends/cxd2099: fix boilerplate whitespace
drivers/media/dvb-frontends/cxd2099.c | 5 +++--
drivers/media/dvb-frontends/cxd2099.h | 3 ++-
2 files changed, 5 insertions(+), 3 deletions(-)
--
2.16.4
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH 1/3] [media] dvb-frontends/cxd2099: fix MODULE_LICENSE to 'GPL v2'
2018-06-19 18:51 [PATCH 0/3] cxd2099: cleanup licensing Daniel Scheller
@ 2018-06-19 18:51 ` Daniel Scheller
2018-06-22 18:30 ` Jasmin J.
2018-06-19 18:51 ` [PATCH 2/3] [media] dvb-frontends/cxd2099: add SPDX license identifier Daniel Scheller
2018-06-19 18:51 ` [PATCH 3/3] [media] dvb-frontends/cxd2099: fix boilerplate whitespace Daniel Scheller
2 siblings, 1 reply; 7+ messages in thread
From: Daniel Scheller @ 2018-06-19 18:51 UTC (permalink / raw)
To: mchehab, mchehab, jasmin, rjkm, mvoelkel; +Cc: linux-media
From: Daniel Scheller <d.scheller@gmx.net>
In commit 3db30defab4b ("use correct MODULE_LINCESE for GPL v2 only
according to notice in header") in the upstream repository for the
mentioned driver at https://github.com/DigitalDevices/dddvb.git, the
MODULE_LICENSE was fixed to "GPL v2" and is now in sync with the GPL
copyright boilerplate. Apply this change to the kernel tree driver
aswell.
Cc: Ralph Metzler <rjkm@metzlerbros.de>
Cc: Manfred Voelkel <mvoelkel@DigitalDevices.de>
Signed-off-by: Daniel Scheller <d.scheller@gmx.net>
---
drivers/media/dvb-frontends/cxd2099.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/media/dvb-frontends/cxd2099.c b/drivers/media/dvb-frontends/cxd2099.c
index 4a0ce3037fd6..42de3d0badba 100644
--- a/drivers/media/dvb-frontends/cxd2099.c
+++ b/drivers/media/dvb-frontends/cxd2099.c
@@ -701,4 +701,4 @@ module_i2c_driver(cxd2099_driver);
MODULE_DESCRIPTION("Sony CXD2099AR Common Interface controller driver");
MODULE_AUTHOR("Ralph Metzler");
-MODULE_LICENSE("GPL");
+MODULE_LICENSE("GPL v2");
--
2.16.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 2/3] [media] dvb-frontends/cxd2099: add SPDX license identifier
2018-06-19 18:51 [PATCH 0/3] cxd2099: cleanup licensing Daniel Scheller
2018-06-19 18:51 ` [PATCH 1/3] [media] dvb-frontends/cxd2099: fix MODULE_LICENSE to 'GPL v2' Daniel Scheller
@ 2018-06-19 18:51 ` Daniel Scheller
2018-06-22 18:30 ` Jasmin J.
2018-06-19 18:51 ` [PATCH 3/3] [media] dvb-frontends/cxd2099: fix boilerplate whitespace Daniel Scheller
2 siblings, 1 reply; 7+ messages in thread
From: Daniel Scheller @ 2018-06-19 18:51 UTC (permalink / raw)
To: mchehab, mchehab, jasmin, rjkm, mvoelkel; +Cc: linux-media
From: Daniel Scheller <d.scheller@gmx.net>
As both the MODULE_LICENSE and the boilerplates are now in sync and clear
that the driver is licensed under the terms of the GPLv2-only, add a
matching SPDX license identifier tag.
Cc: Ralph Metzler <rjkm@metzlerbros.de>
Cc: Manfred Voelkel <mvoelkel@DigitalDevices.de>
Signed-off-by: Daniel Scheller <d.scheller@gmx.net>
---
drivers/media/dvb-frontends/cxd2099.c | 1 +
drivers/media/dvb-frontends/cxd2099.h | 1 +
2 files changed, 2 insertions(+)
diff --git a/drivers/media/dvb-frontends/cxd2099.c b/drivers/media/dvb-frontends/cxd2099.c
index 42de3d0badba..5264e873850e 100644
--- a/drivers/media/dvb-frontends/cxd2099.c
+++ b/drivers/media/dvb-frontends/cxd2099.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0
/*
* cxd2099.c: Driver for the Sony CXD2099AR Common Interface Controller
*
diff --git a/drivers/media/dvb-frontends/cxd2099.h b/drivers/media/dvb-frontends/cxd2099.h
index ec1910dec3f3..0c101bdef01d 100644
--- a/drivers/media/dvb-frontends/cxd2099.h
+++ b/drivers/media/dvb-frontends/cxd2099.h
@@ -1,3 +1,4 @@
+/* SPDX-License-Identifier: GPL-2.0 */
/*
* cxd2099.h: Driver for the Sony CXD2099AR Common Interface Controller
*
--
2.16.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH 3/3] [media] dvb-frontends/cxd2099: fix boilerplate whitespace
2018-06-19 18:51 [PATCH 0/3] cxd2099: cleanup licensing Daniel Scheller
2018-06-19 18:51 ` [PATCH 1/3] [media] dvb-frontends/cxd2099: fix MODULE_LICENSE to 'GPL v2' Daniel Scheller
2018-06-19 18:51 ` [PATCH 2/3] [media] dvb-frontends/cxd2099: add SPDX license identifier Daniel Scheller
@ 2018-06-19 18:51 ` Daniel Scheller
2018-06-22 18:30 ` Jasmin J.
2 siblings, 1 reply; 7+ messages in thread
From: Daniel Scheller @ 2018-06-19 18:51 UTC (permalink / raw)
To: mchehab, mchehab, jasmin, rjkm, mvoelkel; +Cc: linux-media
From: Daniel Scheller <d.scheller@gmx.net>
There's a superfluous whitespace in the boilerplate license text in both
.c and .h files. Fix this.
Cc: Ralph Metzler <rjkm@metzlerbros.de>
Cc: Manfred Voelkel <mvoelkel@DigitalDevices.de>
Signed-off-by: Daniel Scheller <d.scheller@gmx.net>
---
drivers/media/dvb-frontends/cxd2099.c | 2 +-
drivers/media/dvb-frontends/cxd2099.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/media/dvb-frontends/cxd2099.c b/drivers/media/dvb-frontends/cxd2099.c
index 5264e873850e..5d8884ed64ef 100644
--- a/drivers/media/dvb-frontends/cxd2099.c
+++ b/drivers/media/dvb-frontends/cxd2099.c
@@ -10,7 +10,7 @@
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
diff --git a/drivers/media/dvb-frontends/cxd2099.h b/drivers/media/dvb-frontends/cxd2099.h
index 0c101bdef01d..30787095843a 100644
--- a/drivers/media/dvb-frontends/cxd2099.h
+++ b/drivers/media/dvb-frontends/cxd2099.h
@@ -10,7 +10,7 @@
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
--
2.16.4
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH 1/3] [media] dvb-frontends/cxd2099: fix MODULE_LICENSE to 'GPL v2'
2018-06-19 18:51 ` [PATCH 1/3] [media] dvb-frontends/cxd2099: fix MODULE_LICENSE to 'GPL v2' Daniel Scheller
@ 2018-06-22 18:30 ` Jasmin J.
0 siblings, 0 replies; 7+ messages in thread
From: Jasmin J. @ 2018-06-22 18:30 UTC (permalink / raw)
To: Daniel Scheller, mchehab, mchehab, rjkm, mvoelkel; +Cc: linux-media
You can add my Acked-by: Jasmin Jessich <jasmin@anw.at>
On 06/19/2018 08:51 PM, Daniel Scheller wrote:
> From: Daniel Scheller <d.scheller@gmx.net>
>
> In commit 3db30defab4b ("use correct MODULE_LINCESE for GPL v2 only
> according to notice in header") in the upstream repository for the
> mentioned driver at https://github.com/DigitalDevices/dddvb.git, the
> MODULE_LICENSE was fixed to "GPL v2" and is now in sync with the GPL
> copyright boilerplate. Apply this change to the kernel tree driver
> aswell.
>
> Cc: Ralph Metzler <rjkm@metzlerbros.de>
> Cc: Manfred Voelkel <mvoelkel@DigitalDevices.de>
> Signed-off-by: Daniel Scheller <d.scheller@gmx.net>
> ---
> drivers/media/dvb-frontends/cxd2099.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/media/dvb-frontends/cxd2099.c b/drivers/media/dvb-frontends/cxd2099.c
> index 4a0ce3037fd6..42de3d0badba 100644
> --- a/drivers/media/dvb-frontends/cxd2099.c
> +++ b/drivers/media/dvb-frontends/cxd2099.c
> @@ -701,4 +701,4 @@ module_i2c_driver(cxd2099_driver);
>
> MODULE_DESCRIPTION("Sony CXD2099AR Common Interface controller driver");
> MODULE_AUTHOR("Ralph Metzler");
> -MODULE_LICENSE("GPL");
> +MODULE_LICENSE("GPL v2");
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 2/3] [media] dvb-frontends/cxd2099: add SPDX license identifier
2018-06-19 18:51 ` [PATCH 2/3] [media] dvb-frontends/cxd2099: add SPDX license identifier Daniel Scheller
@ 2018-06-22 18:30 ` Jasmin J.
0 siblings, 0 replies; 7+ messages in thread
From: Jasmin J. @ 2018-06-22 18:30 UTC (permalink / raw)
To: Daniel Scheller, mchehab, mchehab, rjkm, mvoelkel; +Cc: linux-media
You can add my Acked-by: Jasmin Jessich <jasmin@anw.at>
On 06/19/2018 08:51 PM, Daniel Scheller wrote:
> From: Daniel Scheller <d.scheller@gmx.net>
>
> As both the MODULE_LICENSE and the boilerplates are now in sync and clear
> that the driver is licensed under the terms of the GPLv2-only, add a
> matching SPDX license identifier tag.
>
> Cc: Ralph Metzler <rjkm@metzlerbros.de>
> Cc: Manfred Voelkel <mvoelkel@DigitalDevices.de>
> Signed-off-by: Daniel Scheller <d.scheller@gmx.net>
> ---
> drivers/media/dvb-frontends/cxd2099.c | 1 +
> drivers/media/dvb-frontends/cxd2099.h | 1 +
> 2 files changed, 2 insertions(+)
>
> diff --git a/drivers/media/dvb-frontends/cxd2099.c b/drivers/media/dvb-frontends/cxd2099.c
> index 42de3d0badba..5264e873850e 100644
> --- a/drivers/media/dvb-frontends/cxd2099.c
> +++ b/drivers/media/dvb-frontends/cxd2099.c
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0
> /*
> * cxd2099.c: Driver for the Sony CXD2099AR Common Interface Controller
> *
> diff --git a/drivers/media/dvb-frontends/cxd2099.h b/drivers/media/dvb-frontends/cxd2099.h
> index ec1910dec3f3..0c101bdef01d 100644
> --- a/drivers/media/dvb-frontends/cxd2099.h
> +++ b/drivers/media/dvb-frontends/cxd2099.h
> @@ -1,3 +1,4 @@
> +/* SPDX-License-Identifier: GPL-2.0 */
> /*
> * cxd2099.h: Driver for the Sony CXD2099AR Common Interface Controller
> *
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH 3/3] [media] dvb-frontends/cxd2099: fix boilerplate whitespace
2018-06-19 18:51 ` [PATCH 3/3] [media] dvb-frontends/cxd2099: fix boilerplate whitespace Daniel Scheller
@ 2018-06-22 18:30 ` Jasmin J.
0 siblings, 0 replies; 7+ messages in thread
From: Jasmin J. @ 2018-06-22 18:30 UTC (permalink / raw)
To: Daniel Scheller, mchehab, mchehab, rjkm, mvoelkel; +Cc: linux-media
You can add my Acked-by: Jasmin Jessich <jasmin@anw.at>
On 06/19/2018 08:51 PM, Daniel Scheller wrote:
> From: Daniel Scheller <d.scheller@gmx.net>
>
> There's a superfluous whitespace in the boilerplate license text in both
> .c and .h files. Fix this.
>
> Cc: Ralph Metzler <rjkm@metzlerbros.de>
> Cc: Manfred Voelkel <mvoelkel@DigitalDevices.de>
> Signed-off-by: Daniel Scheller <d.scheller@gmx.net>
> ---
> drivers/media/dvb-frontends/cxd2099.c | 2 +-
> drivers/media/dvb-frontends/cxd2099.h | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/media/dvb-frontends/cxd2099.c b/drivers/media/dvb-frontends/cxd2099.c
> index 5264e873850e..5d8884ed64ef 100644
> --- a/drivers/media/dvb-frontends/cxd2099.c
> +++ b/drivers/media/dvb-frontends/cxd2099.c
> @@ -10,7 +10,7 @@
> *
> * This program is distributed in the hope that it will be useful,
> * but WITHOUT ANY WARRANTY; without even the implied warranty of
> - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> * GNU General Public License for more details.
> */
>
> diff --git a/drivers/media/dvb-frontends/cxd2099.h b/drivers/media/dvb-frontends/cxd2099.h
> index 0c101bdef01d..30787095843a 100644
> --- a/drivers/media/dvb-frontends/cxd2099.h
> +++ b/drivers/media/dvb-frontends/cxd2099.h
> @@ -10,7 +10,7 @@
> *
> * This program is distributed in the hope that it will be useful,
> * but WITHOUT ANY WARRANTY; without even the implied warranty of
> - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> * GNU General Public License for more details.
> */
>
>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2018-06-22 18:30 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-19 18:51 [PATCH 0/3] cxd2099: cleanup licensing Daniel Scheller
2018-06-19 18:51 ` [PATCH 1/3] [media] dvb-frontends/cxd2099: fix MODULE_LICENSE to 'GPL v2' Daniel Scheller
2018-06-22 18:30 ` Jasmin J.
2018-06-19 18:51 ` [PATCH 2/3] [media] dvb-frontends/cxd2099: add SPDX license identifier Daniel Scheller
2018-06-22 18:30 ` Jasmin J.
2018-06-19 18:51 ` [PATCH 3/3] [media] dvb-frontends/cxd2099: fix boilerplate whitespace Daniel Scheller
2018-06-22 18:30 ` Jasmin J.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).