linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Dual licence some files in GPL-2.0 and MIT
@ 2020-02-10 15:35 Emmanuel Vadot
  2020-02-10 15:35 ` [PATCH 1/2] drm/client: Dual licence the file in GPL-2 " Emmanuel Vadot
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Emmanuel Vadot @ 2020-02-10 15:35 UTC (permalink / raw)
  To: maarten.lankhorst, mripard, airlied, daniel, tzimmermann, kraxel
  Cc: dri-devel, linux-kernel, Emmanuel Vadot

Hello all,

We had a discussion a while back with Noralf where he said that he wouldn't
mind dual licence his work under GPL-2 and MIT.
Those files are a problem with BSDs as we cannot include them.
For drm_client.c the main contributors are Noralf Trønnes and Thomas
Zimmermann, the other commits are just catch ups from changes elsewhere
(return values, struct member names, function renames etc ...).
For drm_format_helper the main contributors are Noralf Trønnes and
Gerd Hoffmann. Same comment as for drm_client.c for the other commits.

Emmanuel Vadot (2):
  drm/client: Dual licence the file in GPL-2 and MIT
  drm/format_helper: Dual licence the file in GPL 2 and MIT

 drivers/gpu/drm/drm_client.c        | 2 +-
 drivers/gpu/drm/drm_format_helper.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.25.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] drm/client: Dual licence the file in GPL-2 and MIT
  2020-02-10 15:35 [PATCH 0/2] Dual licence some files in GPL-2.0 and MIT Emmanuel Vadot
@ 2020-02-10 15:35 ` Emmanuel Vadot
  2020-02-10 15:35 ` [PATCH 2/2] drm/format_helper: Dual licence the file in GPL 2 " Emmanuel Vadot
  2020-02-11  8:37 ` [PATCH 0/2] Dual licence some files in GPL-2.0 " Daniel Vetter
  2 siblings, 0 replies; 4+ messages in thread
From: Emmanuel Vadot @ 2020-02-10 15:35 UTC (permalink / raw)
  To: maarten.lankhorst, mripard, airlied, daniel, tzimmermann, kraxel
  Cc: dri-devel, linux-kernel, Emmanuel Vadot, Emmanuel Vadot

From: Emmanuel Vadot <manu@FreeBSD.Org>

Change the licence to a dual one with MIT so BSDs could use this file.

Signed-off-by: Emmanuel Vadot <manu@FreeBSD.org>
---
 drivers/gpu/drm/drm_client.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/drm_client.c b/drivers/gpu/drm/drm_client.c
index b031b45aa8ef..6b0c6ef8b9b3 100644
--- a/drivers/gpu/drm/drm_client.c
+++ b/drivers/gpu/drm/drm_client.c
@@ -1,4 +1,4 @@
-// SPDX-License-Identifier: GPL-2.0
+// SPDX-License-Identifier: GPL-2.0 or MIT
 /*
  * Copyright 2018 Noralf Trønnes
  */
-- 
2.25.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] drm/format_helper: Dual licence the file in GPL 2 and MIT
  2020-02-10 15:35 [PATCH 0/2] Dual licence some files in GPL-2.0 and MIT Emmanuel Vadot
  2020-02-10 15:35 ` [PATCH 1/2] drm/client: Dual licence the file in GPL-2 " Emmanuel Vadot
@ 2020-02-10 15:35 ` Emmanuel Vadot
  2020-02-11  8:37 ` [PATCH 0/2] Dual licence some files in GPL-2.0 " Daniel Vetter
  2 siblings, 0 replies; 4+ messages in thread
From: Emmanuel Vadot @ 2020-02-10 15:35 UTC (permalink / raw)
  To: maarten.lankhorst, mripard, airlied, daniel, tzimmermann, kraxel
  Cc: dri-devel, linux-kernel, Emmanuel Vadot, Emmanuel Vadot

From: Emmanuel Vadot <manu@FreeBSD.Org>

Change the licence to a dual one with MIT so BSDs could use this file.

Signed-off-by: Emmanuel Vadot <manu@FreeBSD.org>
---
 drivers/gpu/drm/drm_format_helper.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/drm_format_helper.c b/drivers/gpu/drm/drm_format_helper.c
index 0897cb9aeaff..3b818f2b2392 100644
--- a/drivers/gpu/drm/drm_format_helper.c
+++ b/drivers/gpu/drm/drm_format_helper.c
@@ -1,4 +1,4 @@
-/* SPDX-License-Identifier: GPL-2.0 */
+// SPDX-License-Identifier: GPL-2.0 or MIT
 /*
  * Copyright (C) 2016 Noralf Trønnes
  *
-- 
2.25.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/2] Dual licence some files in GPL-2.0 and MIT
  2020-02-10 15:35 [PATCH 0/2] Dual licence some files in GPL-2.0 and MIT Emmanuel Vadot
  2020-02-10 15:35 ` [PATCH 1/2] drm/client: Dual licence the file in GPL-2 " Emmanuel Vadot
  2020-02-10 15:35 ` [PATCH 2/2] drm/format_helper: Dual licence the file in GPL 2 " Emmanuel Vadot
@ 2020-02-11  8:37 ` Daniel Vetter
  2 siblings, 0 replies; 4+ messages in thread
From: Daniel Vetter @ 2020-02-11  8:37 UTC (permalink / raw)
  To: Emmanuel Vadot
  Cc: maarten.lankhorst, mripard, airlied, daniel, tzimmermann, kraxel,
	dri-devel, linux-kernel

On Mon, Feb 10, 2020 at 04:35:42PM +0100, Emmanuel Vadot wrote:
> Hello all,
> 
> We had a discussion a while back with Noralf where he said that he wouldn't
> mind dual licence his work under GPL-2 and MIT.
> Those files are a problem with BSDs as we cannot include them.
> For drm_client.c the main contributors are Noralf Trønnes and Thomas
> Zimmermann, the other commits are just catch ups from changes elsewhere
> (return values, struct member names, function renames etc ...).
> For drm_format_helper the main contributors are Noralf Trønnes and
> Gerd Hoffmann. Same comment as for drm_client.c for the other commits.

Can you pls list all contributors for each file in the commit message, so
we can make sure we're collecting all the required acks?

Afaiui for official relicensing, we need everyone.
-Daniel

> 
> Emmanuel Vadot (2):
>   drm/client: Dual licence the file in GPL-2 and MIT
>   drm/format_helper: Dual licence the file in GPL 2 and MIT
> 
>  drivers/gpu/drm/drm_client.c        | 2 +-
>  drivers/gpu/drm/drm_format_helper.c | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> -- 
> 2.25.0
> 

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-02-11  8:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-10 15:35 [PATCH 0/2] Dual licence some files in GPL-2.0 and MIT Emmanuel Vadot
2020-02-10 15:35 ` [PATCH 1/2] drm/client: Dual licence the file in GPL-2 " Emmanuel Vadot
2020-02-10 15:35 ` [PATCH 2/2] drm/format_helper: Dual licence the file in GPL 2 " Emmanuel Vadot
2020-02-11  8:37 ` [PATCH 0/2] Dual licence some files in GPL-2.0 " Daniel Vetter

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).