linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] irqchip: convert to SPDX for Renesas drivers
@ 2018-08-22  4:52 Kuninori Morimoto
  2018-08-22  4:52 ` [PATCH 1/2] irqchip: irq-renesas-irqc: convert to SPDX identifiers Kuninori Morimoto
  2018-08-22  4:53 ` [PATCH 2/2] irqchip: irq-renesas-intc-irqpin: " Kuninori Morimoto
  0 siblings, 2 replies; 7+ messages in thread
From: Kuninori Morimoto @ 2018-08-22  4:52 UTC (permalink / raw)
  To: Thomas Gleixner, Marc Zyngier, Jason Cooper; +Cc: Linux-Renesas, Linux-Kernel


Hi Thomas, Marc, Jason

These patches convert license to SPDX style for Renesas drivers.

Kuninori Morimoto (2):
  irqchip: irq-renesas-irqc: convert to SPDX identifiers
  irqchip: irq-renesas-intc-irqpin: convert to SPDX identifiers

 drivers/irqchip/irq-renesas-intc-irqpin.c | 14 +-------------
 drivers/irqchip/irq-renesas-irqc.c        | 14 +-------------
 2 files changed, 2 insertions(+), 26 deletions(-)

-- 
2.7.4


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

* [PATCH 1/2] irqchip: irq-renesas-irqc: convert to SPDX identifiers
  2018-08-22  4:52 [PATCH 0/2] irqchip: convert to SPDX for Renesas drivers Kuninori Morimoto
@ 2018-08-22  4:52 ` Kuninori Morimoto
  2018-08-22 11:37   ` Simon Horman
  2018-08-22  4:53 ` [PATCH 2/2] irqchip: irq-renesas-intc-irqpin: " Kuninori Morimoto
  1 sibling, 1 reply; 7+ messages in thread
From: Kuninori Morimoto @ 2018-08-22  4:52 UTC (permalink / raw)
  To: Thomas Gleixner, Marc Zyngier, Jason Cooper; +Cc: Linux-Renesas, Linux-Kernel


From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

This patch updates license to use SPDX-License-Identifier
instead of verbose license text.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 drivers/irqchip/irq-renesas-irqc.c | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/drivers/irqchip/irq-renesas-irqc.c b/drivers/irqchip/irq-renesas-irqc.c
index a4f1112..a449a7c 100644
--- a/drivers/irqchip/irq-renesas-irqc.c
+++ b/drivers/irqchip/irq-renesas-irqc.c
@@ -1,20 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Renesas IRQC Driver
  *
  *  Copyright (C) 2013 Magnus Damm
- *
- * 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
- *
- * 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
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
 #include <linux/init.h>
-- 
2.7.4


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

* [PATCH 2/2] irqchip: irq-renesas-intc-irqpin: convert to SPDX identifiers
  2018-08-22  4:52 [PATCH 0/2] irqchip: convert to SPDX for Renesas drivers Kuninori Morimoto
  2018-08-22  4:52 ` [PATCH 1/2] irqchip: irq-renesas-irqc: convert to SPDX identifiers Kuninori Morimoto
@ 2018-08-22  4:53 ` Kuninori Morimoto
  2018-08-22 11:37   ` Simon Horman
  1 sibling, 1 reply; 7+ messages in thread
From: Kuninori Morimoto @ 2018-08-22  4:53 UTC (permalink / raw)
  To: Thomas Gleixner, Marc Zyngier, Jason Cooper; +Cc: Linux-Renesas, Linux-Kernel

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

This patch updates license to use SPDX-License-Identifier
instead of verbose license text.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 drivers/irqchip/irq-renesas-intc-irqpin.c | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/drivers/irqchip/irq-renesas-intc-irqpin.c b/drivers/irqchip/irq-renesas-intc-irqpin.c
index c6e6c9e..8c03952 100644
--- a/drivers/irqchip/irq-renesas-intc-irqpin.c
+++ b/drivers/irqchip/irq-renesas-intc-irqpin.c
@@ -1,20 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Renesas INTC External IRQ Pin Driver
  *
  *  Copyright (C) 2013 Magnus Damm
- *
- * 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
- *
- * 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
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
 #include <linux/init.h>
-- 
2.7.4


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

* Re: [PATCH 1/2] irqchip: irq-renesas-irqc: convert to SPDX identifiers
  2018-08-22  4:52 ` [PATCH 1/2] irqchip: irq-renesas-irqc: convert to SPDX identifiers Kuninori Morimoto
@ 2018-08-22 11:37   ` Simon Horman
  0 siblings, 0 replies; 7+ messages in thread
From: Simon Horman @ 2018-08-22 11:37 UTC (permalink / raw)
  To: Kuninori Morimoto
  Cc: Thomas Gleixner, Marc Zyngier, Jason Cooper, Linux-Renesas, Linux-Kernel

On Wed, Aug 22, 2018 at 04:52:49AM +0000, Kuninori Morimoto wrote:
> 
> From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> 
> This patch updates license to use SPDX-License-Identifier
> instead of verbose license text.
> 
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

Reviewed-by: Simon Horman <horms+renesas@verge.net.au>


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

* Re: [PATCH 2/2] irqchip: irq-renesas-intc-irqpin: convert to SPDX identifiers
  2018-08-22  4:53 ` [PATCH 2/2] irqchip: irq-renesas-intc-irqpin: " Kuninori Morimoto
@ 2018-08-22 11:37   ` Simon Horman
  0 siblings, 0 replies; 7+ messages in thread
From: Simon Horman @ 2018-08-22 11:37 UTC (permalink / raw)
  To: Kuninori Morimoto
  Cc: Thomas Gleixner, Marc Zyngier, Jason Cooper, Linux-Renesas, Linux-Kernel

On Wed, Aug 22, 2018 at 04:53:03AM +0000, Kuninori Morimoto wrote:
> From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> 
> This patch updates license to use SPDX-License-Identifier
> instead of verbose license text.
> 
> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

Reviewed-by: Simon Horman <horms+renesas@verge.net.au>


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

* [PATCH 2/2] irqchip: irq-renesas-intc-irqpin: convert to SPDX identifiers
  2018-12-18  6:02 [PATCH 0/2][resend] irqchip: irq-renesas-xxx: " Kuninori Morimoto
@ 2018-12-18  6:03 ` Kuninori Morimoto
  0 siblings, 0 replies; 7+ messages in thread
From: Kuninori Morimoto @ 2018-12-18  6:03 UTC (permalink / raw)
  To: Thomas Gleixner, Jason Cooper, Marc Zyngier; +Cc: linux-kernel

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

This patch updates license to use SPDX-License-Identifier
instead of verbose license text.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
---
 drivers/irqchip/irq-renesas-intc-irqpin.c | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/drivers/irqchip/irq-renesas-intc-irqpin.c b/drivers/irqchip/irq-renesas-intc-irqpin.c
index c6e6c9e..8c03952 100644
--- a/drivers/irqchip/irq-renesas-intc-irqpin.c
+++ b/drivers/irqchip/irq-renesas-intc-irqpin.c
@@ -1,20 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Renesas INTC External IRQ Pin Driver
  *
  *  Copyright (C) 2013 Magnus Damm
- *
- * 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
- *
- * 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
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
 #include <linux/init.h>
-- 
2.7.4


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

* [PATCH 2/2] irqchip: irq-renesas-intc-irqpin: convert to SPDX identifiers
  2018-12-05  8:24 [PATCH 0/2] irqchip: irq-renesas-xxx: " Kuninori Morimoto
@ 2018-12-05  8:25 ` Kuninori Morimoto
  0 siblings, 0 replies; 7+ messages in thread
From: Kuninori Morimoto @ 2018-12-05  8:25 UTC (permalink / raw)
  To: Thomas Gleixner, Jason Cooper, Marc Zyngier; +Cc: linux-kernel

From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>

This patch updates license to use SPDX-License-Identifier
instead of verbose license text.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
---
 drivers/irqchip/irq-renesas-intc-irqpin.c | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/drivers/irqchip/irq-renesas-intc-irqpin.c b/drivers/irqchip/irq-renesas-intc-irqpin.c
index c6e6c9e..8c03952 100644
--- a/drivers/irqchip/irq-renesas-intc-irqpin.c
+++ b/drivers/irqchip/irq-renesas-intc-irqpin.c
@@ -1,20 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Renesas INTC External IRQ Pin Driver
  *
  *  Copyright (C) 2013 Magnus Damm
- *
- * 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
- *
- * 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
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
 #include <linux/init.h>
-- 
2.7.4


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

end of thread, other threads:[~2018-12-18  6:03 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-22  4:52 [PATCH 0/2] irqchip: convert to SPDX for Renesas drivers Kuninori Morimoto
2018-08-22  4:52 ` [PATCH 1/2] irqchip: irq-renesas-irqc: convert to SPDX identifiers Kuninori Morimoto
2018-08-22 11:37   ` Simon Horman
2018-08-22  4:53 ` [PATCH 2/2] irqchip: irq-renesas-intc-irqpin: " Kuninori Morimoto
2018-08-22 11:37   ` Simon Horman
2018-12-05  8:24 [PATCH 0/2] irqchip: irq-renesas-xxx: " Kuninori Morimoto
2018-12-05  8:25 ` [PATCH 2/2] irqchip: irq-renesas-intc-irqpin: " Kuninori Morimoto
2018-12-18  6:02 [PATCH 0/2][resend] irqchip: irq-renesas-xxx: " Kuninori Morimoto
2018-12-18  6:03 ` [PATCH 2/2] irqchip: irq-renesas-intc-irqpin: " Kuninori Morimoto

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