linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] irqchip: madera: Fixup SPDX headers
@ 2019-06-25 15:47 Charles Keepax
  2019-07-26 13:47 ` Marc Zyngier
  0 siblings, 1 reply; 3+ messages in thread
From: Charles Keepax @ 2019-06-25 15:47 UTC (permalink / raw)
  To: tglx, jason, marc.zyngier; +Cc: linux-kernel, patches

GPL-2.0-only is the preferred way of expressing v2 of the GPL, update
the code to use this.

Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
---
 drivers/irqchip/irq-madera.c       | 2 +-
 include/linux/irqchip/irq-madera.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/irqchip/irq-madera.c b/drivers/irqchip/irq-madera.c
index 8b81271c823c6..6b0457876941d 100644
--- a/drivers/irqchip/irq-madera.c
+++ b/drivers/irqchip/irq-madera.c
@@ -1,4 +1,4 @@
-// SPDX-License-Identifier: GPL-2.0
+// SPDX-License-Identifier: GPL-2.0-only
 /*
  * Interrupt support for Cirrus Logic Madera codecs
  *
diff --git a/include/linux/irqchip/irq-madera.h b/include/linux/irqchip/irq-madera.h
index 1160fa3769ae6..3a46cadd38654 100644
--- a/include/linux/irqchip/irq-madera.h
+++ b/include/linux/irqchip/irq-madera.h
@@ -1,4 +1,4 @@
-/* SPDX-License-Identifier: GPL-2.0 */
+/* SPDX-License-Identifier: GPL-2.0-only */
 /*
  * Interrupt support for Cirrus Logic Madera codecs
  *
-- 
2.11.0


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

* Re: [PATCH] irqchip: madera: Fixup SPDX headers
  2019-06-25 15:47 [PATCH] irqchip: madera: Fixup SPDX headers Charles Keepax
@ 2019-07-26 13:47 ` Marc Zyngier
  2019-07-26 15:00   ` Charles Keepax
  0 siblings, 1 reply; 3+ messages in thread
From: Marc Zyngier @ 2019-07-26 13:47 UTC (permalink / raw)
  To: Charles Keepax; +Cc: tglx, jason, linux-kernel, patches

On Tue, 25 Jun 2019 16:47:17 +0100,
Charles Keepax <ckeepax@opensource.cirrus.com> wrote:
> 
> GPL-2.0-only is the preferred way of expressing v2 of the GPL, update
> the code to use this.
> 
> Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
> ---
>  drivers/irqchip/irq-madera.c       | 2 +-
>  include/linux/irqchip/irq-madera.h | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/irqchip/irq-madera.c b/drivers/irqchip/irq-madera.c
> index 8b81271c823c6..6b0457876941d 100644
> --- a/drivers/irqchip/irq-madera.c
> +++ b/drivers/irqchip/irq-madera.c
> @@ -1,4 +1,4 @@
> -// SPDX-License-Identifier: GPL-2.0
> +// SPDX-License-Identifier: GPL-2.0-only
>  /*
>   * Interrupt support for Cirrus Logic Madera codecs
>   *
> diff --git a/include/linux/irqchip/irq-madera.h b/include/linux/irqchip/irq-madera.h
> index 1160fa3769ae6..3a46cadd38654 100644
> --- a/include/linux/irqchip/irq-madera.h
> +++ b/include/linux/irqchip/irq-madera.h
> @@ -1,4 +1,4 @@
> -/* SPDX-License-Identifier: GPL-2.0 */
> +/* SPDX-License-Identifier: GPL-2.0-only */
>  /*
>   * Interrupt support for Cirrus Logic Madera codecs
>   *
> -- 
> 2.11.0
> 

I'm not sure this changes anything. LICENSES/preferred/GPL-2.0 doesn't
seem to distinguish the two tags.

Thomas, what do you think?

	M.

-- 
Jazz is not dead, it just smells funny.

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

* Re: [PATCH] irqchip: madera: Fixup SPDX headers
  2019-07-26 13:47 ` Marc Zyngier
@ 2019-07-26 15:00   ` Charles Keepax
  0 siblings, 0 replies; 3+ messages in thread
From: Charles Keepax @ 2019-07-26 15:00 UTC (permalink / raw)
  To: Marc Zyngier; +Cc: tglx, jason, linux-kernel, patches

On Fri, Jul 26, 2019 at 02:47:05PM +0100, Marc Zyngier wrote:
> On Tue, 25 Jun 2019 16:47:17 +0100,
> Charles Keepax <ckeepax@opensource.cirrus.com> wrote:
> > diff --git a/include/linux/irqchip/irq-madera.h b/include/linux/irqchip/irq-madera.h
> > index 1160fa3769ae6..3a46cadd38654 100644
> > --- a/include/linux/irqchip/irq-madera.h
> > +++ b/include/linux/irqchip/irq-madera.h
> > @@ -1,4 +1,4 @@
> > -/* SPDX-License-Identifier: GPL-2.0 */
> > +/* SPDX-License-Identifier: GPL-2.0-only */
> 
> I'm not sure this changes anything. LICENSES/preferred/GPL-2.0 doesn't
> seem to distinguish the two tags.
> 
> Thomas, what do you think?
> 

I have no objection to dropping the patch if this makes no
difference, just realised all the recent SPDX patches had been
using the -only version and assumed that was the preferred
version for v2 only.

Thanks,
Charles

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

end of thread, other threads:[~2019-07-26 15:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-25 15:47 [PATCH] irqchip: madera: Fixup SPDX headers Charles Keepax
2019-07-26 13:47 ` Marc Zyngier
2019-07-26 15:00   ` Charles Keepax

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