linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/4] da9063: convert to SPDX
@ 2019-03-18 15:57 Wolfram Sang
  2019-03-18 15:57 ` [PATCH 3/4] input: da9063_onkey: convert header " Wolfram Sang
  0 siblings, 1 reply; 4+ messages in thread
From: Wolfram Sang @ 2019-03-18 15:57 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-renesas-soc, Lee Jones, Mark Brown, Support Opensource,
	Wolfram Sang, linux-input, linux-rtc

When working with this driver while debugging something else, I noticed a typo
in one of the file headers and decided that it could be converted to SPDX while
I am at it anyhow.

These patches were "tested" on a Renesas Lager board (R-Car H2). No regressions
encountered. buildbot was happy, too.

The patches are based on v5.1-rc1. I'd think they can be picked up per
subsystem but am also fine with everything going via MFD. There is no
dependency or merge conflict with my platform_data removal series which I sent
a few minutes ago.

Looking forward to comments!

   Wolfram




Wolfram Sang (4):
  mfd: da9063: convert headers to SPDX
  regulator: da9063: convert header to SPDX
  input: da9063_onkey: convert header to SPDX
  rtc: da9063: convert header to SPDX

 drivers/input/misc/da9063_onkey.c    | 11 +----------
 drivers/mfd/da9063-core.c            |  8 ++------
 drivers/mfd/da9063-i2c.c             |  9 ++-------
 drivers/mfd/da9063-irq.c             |  9 ++-------
 drivers/regulator/da9063-regulator.c |  8 +-------
 drivers/rtc/rtc-da9063.c             | 14 +++-----------
 include/linux/mfd/da9063/core.h      |  7 +------
 include/linux/mfd/da9063/registers.h |  7 +------
 8 files changed, 13 insertions(+), 60 deletions(-)

-- 
2.11.0

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

* [PATCH 3/4] input: da9063_onkey: convert header to SPDX
  2019-03-18 15:57 [PATCH 0/4] da9063: convert to SPDX Wolfram Sang
@ 2019-03-18 15:57 ` Wolfram Sang
  2019-03-19 12:09   ` Simon Horman
  2019-03-26  9:23   ` Steve Twiss
  0 siblings, 2 replies; 4+ messages in thread
From: Wolfram Sang @ 2019-03-18 15:57 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-renesas-soc, Lee Jones, Mark Brown, Support Opensource,
	Wolfram Sang, Dmitry Torokhov, linux-input

Covnert the header of the source file to SPDX.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
 drivers/input/misc/da9063_onkey.c | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/drivers/input/misc/da9063_onkey.c b/drivers/input/misc/da9063_onkey.c
index 3e9c353d82ef..7b8ae905a6fb 100644
--- a/drivers/input/misc/da9063_onkey.c
+++ b/drivers/input/misc/da9063_onkey.c
@@ -1,16 +1,7 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * OnKey device driver for DA9063, DA9062 and DA9061 PMICs
  * Copyright (C) 2015  Dialog Semiconductor Ltd.
- *
- * 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.
- *
- * 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/module.h>
-- 
2.11.0

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

* Re: [PATCH 3/4] input: da9063_onkey: convert header to SPDX
  2019-03-18 15:57 ` [PATCH 3/4] input: da9063_onkey: convert header " Wolfram Sang
@ 2019-03-19 12:09   ` Simon Horman
  2019-03-26  9:23   ` Steve Twiss
  1 sibling, 0 replies; 4+ messages in thread
From: Simon Horman @ 2019-03-19 12:09 UTC (permalink / raw)
  To: Wolfram Sang
  Cc: linux-kernel, linux-renesas-soc, Lee Jones, Mark Brown,
	Support Opensource, Dmitry Torokhov, linux-input

On Mon, Mar 18, 2019 at 04:57:26PM +0100, Wolfram Sang wrote:
> Covnert the header of the source file to SPDX.
> 
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>

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

> ---
>  drivers/input/misc/da9063_onkey.c | 11 +----------
>  1 file changed, 1 insertion(+), 10 deletions(-)
> 
> diff --git a/drivers/input/misc/da9063_onkey.c b/drivers/input/misc/da9063_onkey.c
> index 3e9c353d82ef..7b8ae905a6fb 100644
> --- a/drivers/input/misc/da9063_onkey.c
> +++ b/drivers/input/misc/da9063_onkey.c
> @@ -1,16 +1,7 @@
> +// SPDX-License-Identifier: GPL-2.0+
>  /*
>   * OnKey device driver for DA9063, DA9062 and DA9061 PMICs
>   * Copyright (C) 2015  Dialog Semiconductor Ltd.
> - *
> - * 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.
> - *
> - * 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/module.h>
> -- 
> 2.11.0
> 

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

* RE: [PATCH 3/4] input: da9063_onkey: convert header to SPDX
  2019-03-18 15:57 ` [PATCH 3/4] input: da9063_onkey: convert header " Wolfram Sang
  2019-03-19 12:09   ` Simon Horman
@ 2019-03-26  9:23   ` Steve Twiss
  1 sibling, 0 replies; 4+ messages in thread
From: Steve Twiss @ 2019-03-26  9:23 UTC (permalink / raw)
  To: Wolfram Sang
  Cc: LKML, linux-renesas-soc@vger.kernel.org, Lee Jones, Mark Brown,
	Support Opensource, Dmitry Torokhov, linux-input@vger.kernel.org

On 18 March 2019 15:57, Wolfram Sang wrote:

> Subject: [PATCH 3/4] input: da9063_onkey: convert header to SPDX
> Covnert the header of the source file to SPDX.

[...]

> +// SPDX-License-Identifier: GPL-2.0+
>  /*
>   * OnKey device driver for DA9063, DA9062 and DA9061 PMICs
>   * Copyright (C) 2015  Dialog Semiconductor Ltd.
[...]
>   */

Thanks!
Acked-by: Steve Twiss <stwiss.opensource@diasemi.com>

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

end of thread, other threads:[~2019-03-26  9:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-18 15:57 [PATCH 0/4] da9063: convert to SPDX Wolfram Sang
2019-03-18 15:57 ` [PATCH 3/4] input: da9063_onkey: convert header " Wolfram Sang
2019-03-19 12:09   ` Simon Horman
2019-03-26  9:23   ` Steve Twiss

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