Re: [PATCH libdrm] libdrm: enclose __FreeBSD__ behind a define

2020-05-20 Thread Emmanuel Vadot
[1]; > @@ -4302,7 +4302,7 @@ drm_public char *drmGetDeviceNameFromFd2(int fd) > free(value); > > return strdup(path); > -#elif __FreeBSD__ > +#elif defined(__FreeBSD__) > return drmGetDeviceNameFromFd(fd); > #else > struct stat sbuf; > -- > 2.20.1 >

[PATCH v2 2/2] drm/format_helper: Dual licence the header in GPL-2 and MIT

2020-05-01 Thread Emmanuel Vadot
Source file was dual licenced but the header was omitted, fix that. Contributors for this file are: Noralf Trønnes Gerd Hoffmann Thomas Gleixner Acked-by: Gerd Hoffmann Acked-by: Noralf Trønnes Signed-off-by: Emmanuel Vadot --- Change in v2: Retain the GPL-2.0-or-later SPDF identifier

[RESEND 2/2] drm/format_helper: Dual licence the header in GPL-2 and MIT

2020-05-01 Thread Emmanuel Vadot
Source file was dual licenced but the header was omitted, fix that. Contributors for this file are: Noralf Trønnes Gerd Hoffmann Thomas Gleixner Acked-by: Gerd Hoffmann Acked-by: Noralf Trønnes Signed-off-by: Emmanuel Vadot --- include/drm/drm_format_helper.h | 2 +- 1 file changed, 1

[RESEND 1/2] drm/client: Dual licence the header in GPL-2 and MIT

2020-05-01 Thread Emmanuel Vadot
Source file was dual licenced but the header was omitted, fix that. Contributors for this file are: Daniel Vetter Matt Roper Maxime Ripard Noralf Trønnes Thomas Zimmermann Acked-by: Noralf Trønnes Acked-by: Matt Roper Acked-by: Daniel Vetter Signed-off-by: Emmanuel Vadot --- include/drm

[PATCH v2 1/2] drm/client: Dual licence the header in GPL-2 and MIT

2020-05-01 Thread Emmanuel Vadot
Zimmermann Signed-off-by: Emmanuel Vadot --- include/drm/drm_client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/drm/drm_client.h b/include/drm/drm_client.h index 7402f852d3c4..eb259c2547af 100644 --- a/include/drm/drm_client.h +++ b/include/drm/drm_client.h @@ -1,4

Re: [RESEND 2/2] drm/format_helper: Dual licence the header in GPL-2 and MIT

2020-04-30 Thread Emmanuel Vadot
On Thu, 30 Apr 2020 17:06:34 +0200 Maxime Ripard wrote: > On Thu, Apr 30, 2020 at 04:55:37PM +0200, Emmanuel Vadot wrote: > > Source file was dual licenced but the header was omitted, fix that. > > Contributors for this file are: > > Noralf Trønnes > > Gerd Ho

[PATCH 1/2] drm/client: Dual licence the header in GPL-2 and MIT

2020-03-20 Thread Emmanuel Vadot
Source file was dual licenced but the header was omitted, fix that. Contributors for this file are: Daniel Vetter Matt Roper Maxime Ripard Noralf Trønnes Thomas Zimmermann Signed-off-by: Emmanuel Vadot --- include/drm/drm_client.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[PATCH 2/2] drm/format_helper: Dual licence the header in GPL-2 and MIT

2020-03-20 Thread Emmanuel Vadot
Source file was dual licenced but the header was omitted, fix that. Contributors for this file are: Noralf Trønnes Gerd Hoffmann Thomas Gleixner Signed-off-by: Emmanuel Vadot --- include/drm/drm_format_helper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/drm

Re: [PATCH v2 1/2] drm/client: Dual licence the file in GPL-2 and MIT

2020-02-25 Thread Emmanuel Vadot
On Mon, 24 Feb 2020 11:40:38 + Chris Wilson wrote: > Quoting Jani Nikula (2020-02-15 18:33:09) > > On Sat, 15 Feb 2020, Emmanuel Vadot wrote: > > > From: Emmanuel Vadot > > > > > > Contributors for this file are : > > > Chris Wilson > &g

[PATCH v2 1/2] drm/client: Dual licence the file in GPL-2 and MIT

2020-02-17 Thread Emmanuel Vadot
From: Emmanuel Vadot Contributors for this file are : Chris Wilson Denis Efremov Jani Nikula Maxime Ripard Noralf Trønnes Sam Ravnborg Thomas Zimmermann Signed-off-by: Emmanuel Vadot --- drivers/gpu/drm/drm_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH v2 0/2] Dual licence some files in GPL-2.0 and MIT

2020-02-17 Thread Emmanuel Vadot
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

[PATCH v2 2/2] drm/format_helper: Dual licence the file in GPL 2 and MIT

2020-02-17 Thread Emmanuel Vadot
From: Emmanuel Vadot Contributors for this file are : Gerd Hoffmann Maxime Ripard Noralf Trønnes Signed-off-by: Emmanuel Vadot --- 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

[PATCH 1/2] drm/client: Dual licence the file in GPL-2 and MIT

2020-02-10 Thread Emmanuel Vadot
From: Emmanuel Vadot Change the licence to a dual one with MIT so BSDs could use this file. Signed-off-by: Emmanuel Vadot --- 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

[PATCH 2/2] drm/format_helper: Dual licence the file in GPL 2 and MIT

2020-02-10 Thread Emmanuel Vadot
From: Emmanuel Vadot Change the licence to a dual one with MIT so BSDs could use this file. Signed-off-by: Emmanuel Vadot --- 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

[PATCH 0/2] Dual licence some files in GPL-2.0 and MIT

2020-02-10 Thread Emmanuel Vadot
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

Re: drm core/helpers and MIT license

2019-11-16 Thread Emmanuel Vadot
this mail, I'd like to say that I would love to contribute to DRM and some drivers (lima/panfrost mostly) but for now I need to keep in sync with Linux and finish my work so I can commit it into the FreeBSD kernel. Knowing that future updates will be easier for me because of a lic

Re: drm core/helpers and MIT license

2019-11-16 Thread Emmanuel Vadot
_ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel -- Emmanuel Vadot ___ dri-devel mailing list dri-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dri-devel

Re: [PATCH 09/16] drm/fb-helper: Move out commit code

2019-03-27 Thread Emmanuel Vadot
On Wed, 27 Mar 2019 16:01:01 +0100 Noralf Trønnes wrote: > > > Den 27.03.2019 15.13, skrev Emmanuel Vadot: > > > > Hi Noralf, > > > > On Tue, 26 Mar 2019 18:55:39 +0100 > > Noralf Trønnes wrote: > > > >> Move the modeset commit co

Re: [PATCH 09/16] drm/fb-helper: Move out commit code

2019-03-27 Thread Emmanuel Vadot
> drivers/gpu/drm/drm_fb_helper.c | 232 --- > include/drm/drm_client.h| 3 + > 3 files changed, 239 insertions(+), 232 deletions(-) > It looks like you are moving MIT licenced code to a GPL-only licenced file.