All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] clocksource: convert to SPDX for Renesas
@ 2018-08-22  2:25 Kuninori Morimoto
  2018-08-22  2:25 ` [PATCH 1/4] clocksource: renesas-ostm: convert to SPDX identifiers Kuninori Morimoto
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Kuninori Morimoto @ 2018-08-22  2:25 UTC (permalink / raw)
  To: Daniel Lezcano, Thomas Gleixner; +Cc: Linux-Renesas, linux-kernel


Hi Daniel, Thomas

These convert license to SPDX style on clocksource for Renesas

Kuninori Morimoto (4):
  clocksource: renesas-ostm: convert to SPDX identifiers
  clocksource: sh_cmt: convert to SPDX identifiers
  clocksource: sh_mtu2: convert to SPDX identifiers
  clocksource: sh_tmu: convert to SPDX identifiers

 drivers/clocksource/renesas-ostm.c | 11 +----------
 drivers/clocksource/sh_cmt.c       | 10 +---------
 drivers/clocksource/sh_mtu2.c      | 10 +---------
 drivers/clocksource/sh_tmu.c       | 10 +---------
 4 files changed, 4 insertions(+), 37 deletions(-)

-- 
2.7.4


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

* [PATCH 1/4] clocksource: renesas-ostm: convert to SPDX identifiers
  2018-08-22  2:25 [PATCH 0/4] clocksource: convert to SPDX for Renesas Kuninori Morimoto
@ 2018-08-22  2:25 ` Kuninori Morimoto
  2018-08-22 11:35   ` Simon Horman
  2018-08-22  2:25 ` [PATCH 2/4] clocksource: sh_cmt: " Kuninori Morimoto
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Kuninori Morimoto @ 2018-08-22  2:25 UTC (permalink / raw)
  To: Daniel Lezcano, Thomas Gleixner; +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/clocksource/renesas-ostm.c | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/drivers/clocksource/renesas-ostm.c b/drivers/clocksource/renesas-ostm.c
index 6cffd7c..61d5f3b 100644
--- a/drivers/clocksource/renesas-ostm.c
+++ b/drivers/clocksource/renesas-ostm.c
@@ -1,18 +1,9 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Renesas Timer Support - OSTM
  *
  * Copyright (C) 2017 Renesas Electronics America, Inc.
  * Copyright (C) 2017 Chris Brandt
- *
- * 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.
- *
  */
 
 #include <linux/of_address.h>
-- 
2.7.4


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

* [PATCH 2/4] clocksource: sh_cmt: convert to SPDX identifiers
  2018-08-22  2:25 [PATCH 0/4] clocksource: convert to SPDX for Renesas Kuninori Morimoto
  2018-08-22  2:25 ` [PATCH 1/4] clocksource: renesas-ostm: convert to SPDX identifiers Kuninori Morimoto
@ 2018-08-22  2:25 ` Kuninori Morimoto
  2018-08-22 11:36   ` Simon Horman
  2018-08-22  2:26 ` [PATCH 3/4] clocksource: sh_mtu2: " Kuninori Morimoto
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Kuninori Morimoto @ 2018-08-22  2:25 UTC (permalink / raw)
  To: Daniel Lezcano, Thomas Gleixner; +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/clocksource/sh_cmt.c | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/drivers/clocksource/sh_cmt.c b/drivers/clocksource/sh_cmt.c
index bbbf37c..6f65cf8 100644
--- a/drivers/clocksource/sh_cmt.c
+++ b/drivers/clocksource/sh_cmt.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * SuperH Timer Support - CMT
  *
  *  Copyright (C) 2008 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.
  */
 
 #include <linux/clk.h>
-- 
2.7.4


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

* [PATCH 3/4] clocksource: sh_mtu2: convert to SPDX identifiers
  2018-08-22  2:25 [PATCH 0/4] clocksource: convert to SPDX for Renesas Kuninori Morimoto
  2018-08-22  2:25 ` [PATCH 1/4] clocksource: renesas-ostm: convert to SPDX identifiers Kuninori Morimoto
  2018-08-22  2:25 ` [PATCH 2/4] clocksource: sh_cmt: " Kuninori Morimoto
@ 2018-08-22  2:26 ` Kuninori Morimoto
  2018-08-22 11:36   ` Simon Horman
  2018-08-22  2:26 ` [PATCH 4/4] clocksource: sh_tmu: " Kuninori Morimoto
  2018-08-30  9:29 ` [PATCH 0/4] clocksource: convert to SPDX for Renesas Daniel Lezcano
  4 siblings, 1 reply; 10+ messages in thread
From: Kuninori Morimoto @ 2018-08-22  2:26 UTC (permalink / raw)
  To: Daniel Lezcano, Thomas Gleixner; +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/clocksource/sh_mtu2.c | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/drivers/clocksource/sh_mtu2.c b/drivers/clocksource/sh_mtu2.c
index 6812e09..354b27d 100644
--- a/drivers/clocksource/sh_mtu2.c
+++ b/drivers/clocksource/sh_mtu2.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * SuperH Timer Support - MTU2
  *
  *  Copyright (C) 2009 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.
  */
 
 #include <linux/clk.h>
-- 
2.7.4


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

* [PATCH 4/4] clocksource: sh_tmu: convert to SPDX identifiers
  2018-08-22  2:25 [PATCH 0/4] clocksource: convert to SPDX for Renesas Kuninori Morimoto
                   ` (2 preceding siblings ...)
  2018-08-22  2:26 ` [PATCH 3/4] clocksource: sh_mtu2: " Kuninori Morimoto
@ 2018-08-22  2:26 ` Kuninori Morimoto
  2018-08-22 11:36   ` Simon Horman
  2018-08-30  9:29 ` [PATCH 0/4] clocksource: convert to SPDX for Renesas Daniel Lezcano
  4 siblings, 1 reply; 10+ messages in thread
From: Kuninori Morimoto @ 2018-08-22  2:26 UTC (permalink / raw)
  To: Daniel Lezcano, Thomas Gleixner; +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/clocksource/sh_tmu.c | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/drivers/clocksource/sh_tmu.c b/drivers/clocksource/sh_tmu.c
index c74a6c54..49f1c80 100644
--- a/drivers/clocksource/sh_tmu.c
+++ b/drivers/clocksource/sh_tmu.c
@@ -1,16 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * SuperH Timer Support - TMU
  *
  *  Copyright (C) 2009 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.
  */
 
 #include <linux/clk.h>
-- 
2.7.4


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

* Re: [PATCH 1/4] clocksource: renesas-ostm: convert to SPDX identifiers
  2018-08-22  2:25 ` [PATCH 1/4] clocksource: renesas-ostm: convert to SPDX identifiers Kuninori Morimoto
@ 2018-08-22 11:35   ` Simon Horman
  0 siblings, 0 replies; 10+ messages in thread
From: Simon Horman @ 2018-08-22 11:35 UTC (permalink / raw)
  To: Kuninori Morimoto
  Cc: Daniel Lezcano, Thomas Gleixner, Linux-Renesas, linux-kernel

On Wed, Aug 22, 2018 at 02:25:38AM +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] 10+ messages in thread

* Re: [PATCH 2/4] clocksource: sh_cmt: convert to SPDX identifiers
  2018-08-22  2:25 ` [PATCH 2/4] clocksource: sh_cmt: " Kuninori Morimoto
@ 2018-08-22 11:36   ` Simon Horman
  0 siblings, 0 replies; 10+ messages in thread
From: Simon Horman @ 2018-08-22 11:36 UTC (permalink / raw)
  To: Kuninori Morimoto
  Cc: Daniel Lezcano, Thomas Gleixner, Linux-Renesas, linux-kernel

On Wed, Aug 22, 2018 at 02:25:53AM +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] 10+ messages in thread

* Re: [PATCH 3/4] clocksource: sh_mtu2: convert to SPDX identifiers
  2018-08-22  2:26 ` [PATCH 3/4] clocksource: sh_mtu2: " Kuninori Morimoto
@ 2018-08-22 11:36   ` Simon Horman
  0 siblings, 0 replies; 10+ messages in thread
From: Simon Horman @ 2018-08-22 11:36 UTC (permalink / raw)
  To: Kuninori Morimoto
  Cc: Daniel Lezcano, Thomas Gleixner, Linux-Renesas, linux-kernel

On Wed, Aug 22, 2018 at 02:26:06AM +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] 10+ messages in thread

* Re: [PATCH 4/4] clocksource: sh_tmu: convert to SPDX identifiers
  2018-08-22  2:26 ` [PATCH 4/4] clocksource: sh_tmu: " Kuninori Morimoto
@ 2018-08-22 11:36   ` Simon Horman
  0 siblings, 0 replies; 10+ messages in thread
From: Simon Horman @ 2018-08-22 11:36 UTC (permalink / raw)
  To: Kuninori Morimoto
  Cc: Daniel Lezcano, Thomas Gleixner, Linux-Renesas, linux-kernel

On Wed, Aug 22, 2018 at 02:26:20AM +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] 10+ messages in thread

* Re: [PATCH 0/4] clocksource: convert to SPDX for Renesas
  2018-08-22  2:25 [PATCH 0/4] clocksource: convert to SPDX for Renesas Kuninori Morimoto
                   ` (3 preceding siblings ...)
  2018-08-22  2:26 ` [PATCH 4/4] clocksource: sh_tmu: " Kuninori Morimoto
@ 2018-08-30  9:29 ` Daniel Lezcano
  4 siblings, 0 replies; 10+ messages in thread
From: Daniel Lezcano @ 2018-08-30  9:29 UTC (permalink / raw)
  To: Kuninori Morimoto, Thomas Gleixner; +Cc: Linux-Renesas, linux-kernel

On 22/08/2018 04:25, Kuninori Morimoto wrote:
> 
> Hi Daniel, Thomas
> 
> These convert license to SPDX style on clocksource for Renesas
> 
> Kuninori Morimoto (4):
>   clocksource: renesas-ostm: convert to SPDX identifiers
>   clocksource: sh_cmt: convert to SPDX identifiers
>   clocksource: sh_mtu2: convert to SPDX identifiers
>   clocksource: sh_tmu: convert to SPDX identifiers
> 
>  drivers/clocksource/renesas-ostm.c | 11 +----------
>  drivers/clocksource/sh_cmt.c       | 10 +---------
>  drivers/clocksource/sh_mtu2.c      | 10 +---------
>  drivers/clocksource/sh_tmu.c       | 10 +---------
>  4 files changed, 4 insertions(+), 37 deletions(-)

Series applied for 4.20

nit: in the future can you stick to the format:

clocksource/drivers/<timer>: [A-Z].*

Thanks

  -- Daniel


-- 
 <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog


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

end of thread, other threads:[~2018-08-30  9:29 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-22  2:25 [PATCH 0/4] clocksource: convert to SPDX for Renesas Kuninori Morimoto
2018-08-22  2:25 ` [PATCH 1/4] clocksource: renesas-ostm: convert to SPDX identifiers Kuninori Morimoto
2018-08-22 11:35   ` Simon Horman
2018-08-22  2:25 ` [PATCH 2/4] clocksource: sh_cmt: " Kuninori Morimoto
2018-08-22 11:36   ` Simon Horman
2018-08-22  2:26 ` [PATCH 3/4] clocksource: sh_mtu2: " Kuninori Morimoto
2018-08-22 11:36   ` Simon Horman
2018-08-22  2:26 ` [PATCH 4/4] clocksource: sh_tmu: " Kuninori Morimoto
2018-08-22 11:36   ` Simon Horman
2018-08-30  9:29 ` [PATCH 0/4] clocksource: convert to SPDX for Renesas Daniel Lezcano

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.