* [PATCH] drm/bridge: dw-hdmi: Switch to SPDX identifier
@ 2018-05-20 17:05 Fabio Estevam
2018-05-22 9:29 ` Lucas Stach
0 siblings, 1 reply; 6+ messages in thread
From: Fabio Estevam @ 2018-05-20 17:05 UTC (permalink / raw)
To: a.hajda; +Cc: Fabio Estevam, laurent.pinchart, dri-devel
From: Fabio Estevam <fabio.estevam@nxp.com>
Adopt the SPDX license identifier headers to ease license compliance
management.
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
---
drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
index ec8d000..3bc62d5 100644
--- a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
+++ b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
@@ -1,15 +1,10 @@
+// SPDX-License-Identifier: GPL-2.0+
/*
* DesignWare High-Definition Multimedia Interface (HDMI) driver
*
* Copyright (C) 2013-2015 Mentor Graphics Inc.
* Copyright (C) 2011-2013 Freescale Semiconductor, Inc.
* Copyright (C) 2010, Guennadi Liakhovetski <g.liakhovetski@gmx.de>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
*/
#include <linux/module.h>
#include <linux/irq.h>
--
2.7.4
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] drm/bridge: dw-hdmi: Switch to SPDX identifier
2018-05-20 17:05 [PATCH] drm/bridge: dw-hdmi: Switch to SPDX identifier Fabio Estevam
@ 2018-05-22 9:29 ` Lucas Stach
2018-05-22 10:37 ` Laurent Pinchart
0 siblings, 1 reply; 6+ messages in thread
From: Lucas Stach @ 2018-05-22 9:29 UTC (permalink / raw)
To: Fabio Estevam, a.hajda; +Cc: Fabio Estevam, laurent.pinchart, dri-devel
Hi Fabio,
Am Sonntag, den 20.05.2018, 14:05 -0300 schrieb Fabio Estevam:
> > From: Fabio Estevam <fabio.estevam@nxp.com>
>
> Adopt the SPDX license identifier headers to ease license compliance
> management.
>
> > Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
> ---
> drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | 7 +------
> 1 file changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> index ec8d000..3bc62d5 100644
> --- a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> +++ b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> @@ -1,15 +1,10 @@
> +// SPDX-License-Identifier: GPL-2.0+
The GPL-2.0+ tag is deprecated, please use GPL-2.0-or-later instead.
Same comment applies to some other SPDX conversion patches from you.
Regards,
Lucas
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] drm/bridge: dw-hdmi: Switch to SPDX identifier
2018-05-22 9:29 ` Lucas Stach
@ 2018-05-22 10:37 ` Laurent Pinchart
2018-05-23 15:02 ` Lucas Stach
0 siblings, 1 reply; 6+ messages in thread
From: Laurent Pinchart @ 2018-05-22 10:37 UTC (permalink / raw)
To: Lucas Stach; +Cc: Fabio Estevam, dri-devel
Hi Lucas,
On Tuesday, 22 May 2018 12:29:21 EEST Lucas Stach wrote:
> Am Sonntag, den 20.05.2018, 14:05 -0300 schrieb Fabio Estevam:
> > > From: Fabio Estevam <fabio.estevam@nxp.com>
> >
> > Adopt the SPDX license identifier headers to ease license compliance
> > management.
> >
> > > Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
> >
> > ---
> > drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | 7 +------
> > 1 file changed, 1 insertion(+), 6 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> > b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c index ec8d000..3bc62d5 100644
> > --- a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> > +++ b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> > @@ -1,15 +1,10 @@
> > +// SPDX-License-Identifier: GPL-2.0+
>
> The GPL-2.0+ tag is deprecated, please use GPL-2.0-or-later instead.
>
> Same comment applies to some other SPDX conversion patches from you.
Documentation/process/license-rules.rst still mentions GPL-2.0+, not GPL-2.0-
or-later. Until the documentation gets updated, I think we should stick to
GPL-2.0+.
--
Regards,
Laurent Pinchart
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] drm/bridge: dw-hdmi: Switch to SPDX identifier
2018-05-22 10:37 ` Laurent Pinchart
@ 2018-05-23 15:02 ` Lucas Stach
2018-05-23 15:07 ` Laurent Pinchart
0 siblings, 1 reply; 6+ messages in thread
From: Lucas Stach @ 2018-05-23 15:02 UTC (permalink / raw)
To: Laurent Pinchart; +Cc: Fabio Estevam, dri-devel
Hi Laurent,
Am Dienstag, den 22.05.2018, 13:37 +0300 schrieb Laurent Pinchart:
> Hi Lucas,
>
> On Tuesday, 22 May 2018 12:29:21 EEST Lucas Stach wrote:
> > Am Sonntag, den 20.05.2018, 14:05 -0300 schrieb Fabio Estevam:
> > > > From: Fabio Estevam <fabio.estevam@nxp.com>
> > >
> > > Adopt the SPDX license identifier headers to ease license compliance
> > > management.
> > >
> > > > Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
> > >
> > > ---
> > > drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | 7 +------
> > > 1 file changed, 1 insertion(+), 6 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> > > b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c index ec8d000..3bc62d5 100644
> > > --- a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> > > +++ b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> > > @@ -1,15 +1,10 @@
> > > +// SPDX-License-Identifier: GPL-2.0+
> >
> > The GPL-2.0+ tag is deprecated, please use GPL-2.0-or-later instead.
> >
> > Same comment applies to some other SPDX conversion patches from you.
>
> Documentation/process/license-rules.rst still mentions GPL-2.0+, not GPL-2.0-
> or-later. Until the documentation gets updated, I think we should stick to
> GPL-2.0+.
The (what I would consider canonical) description of the license [1]
has a pretty fat DEPRECATED tag attached to it. I would prefer not to
pull in patches to convert the license stuff to a tag that's already
deprecated.
Regards,
Lucas
[1] https://spdx.org/licenses/GPL-2.0+.html
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] drm/bridge: dw-hdmi: Switch to SPDX identifier
2018-05-23 15:02 ` Lucas Stach
@ 2018-05-23 15:07 ` Laurent Pinchart
2018-05-23 16:31 ` Greg KH
0 siblings, 1 reply; 6+ messages in thread
From: Laurent Pinchart @ 2018-05-23 15:07 UTC (permalink / raw)
To: Lucas Stach; +Cc: Fabio Estevam, dri-devel, gregkh
Hi Lucas,
(CC'ing Greg)
On Wednesday, 23 May 2018 18:02:23 EEST Lucas Stach wrote:
> Am Dienstag, den 22.05.2018, 13:37 +0300 schrieb Laurent Pinchart:
> > On Tuesday, 22 May 2018 12:29:21 EEST Lucas Stach wrote:
> >> Am Sonntag, den 20.05.2018, 14:05 -0300 schrieb Fabio Estevam:
> >>>> From: Fabio Estevam <fabio.estevam@nxp.com>
> >>>
> >>> Adopt the SPDX license identifier headers to ease license compliance
> >>> management.
> >>>
> >>>> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
> >>>
> >>> ---
> >>> drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | 7 +------
> >>> 1 file changed, 1 insertion(+), 6 deletions(-)
> >>>
> >>> diff --git a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> >>> b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c index ec8d000..3bc62d5
> >>> 100644
> >>> --- a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> >>> +++ b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> >>> @@ -1,15 +1,10 @@
> >>> +// SPDX-License-Identifier: GPL-2.0+
> >>
> >> The GPL-2.0+ tag is deprecated, please use GPL-2.0-or-later instead.
> >>
> >> Same comment applies to some other SPDX conversion patches from you.
> >
> > Documentation/process/license-rules.rst still mentions GPL-2.0+, not
> > GPL-2.0- or-later. Until the documentation gets updated, I think we
> > should stick to GPL-2.0+.
>
> The (what I would consider canonical) description of the license [1]
> has a pretty fat DEPRECATED tag attached to it. I would prefer not to
> pull in patches to convert the license stuff to a tag that's already
> deprecated.
This topic has been discussed before, and Greg asked to stick to the
identifiers defined in Documentation/process/license-rules.rst. As he started
the whole SPDX initiative, I'm inclined to just do as he said :-) I don't have
a strong opinion on this topic personally, but I think that consistency is
important.
> [1] https://spdx.org/licenses/GPL-2.0+.html
--
Regards,
Laurent Pinchart
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] drm/bridge: dw-hdmi: Switch to SPDX identifier
2018-05-23 15:07 ` Laurent Pinchart
@ 2018-05-23 16:31 ` Greg KH
0 siblings, 0 replies; 6+ messages in thread
From: Greg KH @ 2018-05-23 16:31 UTC (permalink / raw)
To: Laurent Pinchart; +Cc: Fabio Estevam, dri-devel
On Wed, May 23, 2018 at 06:07:49PM +0300, Laurent Pinchart wrote:
> Hi Lucas,
>
> (CC'ing Greg)
>
> On Wednesday, 23 May 2018 18:02:23 EEST Lucas Stach wrote:
> > Am Dienstag, den 22.05.2018, 13:37 +0300 schrieb Laurent Pinchart:
> > > On Tuesday, 22 May 2018 12:29:21 EEST Lucas Stach wrote:
> > >> Am Sonntag, den 20.05.2018, 14:05 -0300 schrieb Fabio Estevam:
> > >>>> From: Fabio Estevam <fabio.estevam@nxp.com>
> > >>>
> > >>> Adopt the SPDX license identifier headers to ease license compliance
> > >>> management.
> > >>>
> > >>>> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
> > >>>
> > >>> ---
> > >>> drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | 7 +------
> > >>> 1 file changed, 1 insertion(+), 6 deletions(-)
> > >>>
> > >>> diff --git a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> > >>> b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c index ec8d000..3bc62d5
> > >>> 100644
> > >>> --- a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> > >>> +++ b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c
> > >>> @@ -1,15 +1,10 @@
> > >>> +// SPDX-License-Identifier: GPL-2.0+
> > >>
> > >> The GPL-2.0+ tag is deprecated, please use GPL-2.0-or-later instead.
> > >>
> > >> Same comment applies to some other SPDX conversion patches from you.
> > >
> > > Documentation/process/license-rules.rst still mentions GPL-2.0+, not
> > > GPL-2.0- or-later. Until the documentation gets updated, I think we
> > > should stick to GPL-2.0+.
> >
> > The (what I would consider canonical) description of the license [1]
> > has a pretty fat DEPRECATED tag attached to it. I would prefer not to
> > pull in patches to convert the license stuff to a tag that's already
> > deprecated.
>
> This topic has been discussed before, and Greg asked to stick to the
> identifiers defined in Documentation/process/license-rules.rst. As he started
> the whole SPDX initiative, I'm inclined to just do as he said :-) I don't have
> a strong opinion on this topic personally, but I think that consistency is
> important.
Yes, stick to what we have for now please. I think Thomas has worked to
bring in the update for the new SPDX tags, but as the "old" ones are not
invalid, please wait for that to happen before adding them to the
kernel tree. I think it might make 4.18, unless we get some more "fun"
security issues to distract us...
thanks,
greg k-h
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2018-05-23 16:31 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-20 17:05 [PATCH] drm/bridge: dw-hdmi: Switch to SPDX identifier Fabio Estevam
2018-05-22 9:29 ` Lucas Stach
2018-05-22 10:37 ` Laurent Pinchart
2018-05-23 15:02 ` Lucas Stach
2018-05-23 15:07 ` Laurent Pinchart
2018-05-23 16:31 ` Greg KH
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.