netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] net: fec: ptp: Switch to SPDX identifier
@ 2018-05-20 16:55 Fabio Estevam
  2018-05-20 16:55 ` [PATCH 2/2] net: fec: Add a " Fabio Estevam
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Fabio Estevam @ 2018-05-20 16:55 UTC (permalink / raw)
  To: davem; +Cc: fugang.duan, netdev, 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/net/ethernet/freescale/fec_ptp.c | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/drivers/net/ethernet/freescale/fec_ptp.c b/drivers/net/ethernet/freescale/fec_ptp.c
index f814397..43d9732 100644
--- a/drivers/net/ethernet/freescale/fec_ptp.c
+++ b/drivers/net/ethernet/freescale/fec_ptp.c
@@ -1,20 +1,8 @@
+// SPDX-License-Identifier: GPL-2.0
 /*
  * Fast Ethernet Controller (ENET) PTP driver for MX6x.
  *
  * Copyright (C) 2012 Freescale Semiconductor, Inc.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms and conditions of the GNU General Public License,
- * version 2, as published by the Free Software Foundation.
- *
- * This program is distributed in the hope 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.,
- * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
-- 
2.7.4

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

* [PATCH 2/2] net: fec: Add a SPDX identifier
  2018-05-20 16:55 [PATCH 1/2] net: fec: ptp: Switch to SPDX identifier Fabio Estevam
@ 2018-05-20 16:55 ` Fabio Estevam
  2018-05-21  1:32   ` Andy Duan
  2018-05-22 17:45   ` David Miller
  2018-05-21  1:32 ` [PATCH 1/2] net: fec: ptp: Switch to " Andy Duan
  2018-05-22 17:45 ` David Miller
  2 siblings, 2 replies; 6+ messages in thread
From: Fabio Estevam @ 2018-05-20 16:55 UTC (permalink / raw)
  To: davem; +Cc: fugang.duan, netdev, Fabio Estevam

From: Fabio Estevam <fabio.estevam@nxp.com>

Currently there is no license information in the header of
this file. 

The MODULE_LICENSE field contains ("GPL"), which means
GNU Public License v2 or later, so add a corresponding
SPDX license identifier.

Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
---
 drivers/net/ethernet/freescale/fec_main.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/ethernet/freescale/fec_main.c b/drivers/net/ethernet/freescale/fec_main.c
index f3e43db..1625b74 100644
--- a/drivers/net/ethernet/freescale/fec_main.c
+++ b/drivers/net/ethernet/freescale/fec_main.c
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * Fast Ethernet Controller (FEC) driver for Motorola MPC8xx.
  * Copyright (c) 1997 Dan Malek (dmalek@jlc.net)
-- 
2.7.4

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

* RE: [PATCH 2/2] net: fec: Add a SPDX identifier
  2018-05-20 16:55 ` [PATCH 2/2] net: fec: Add a " Fabio Estevam
@ 2018-05-21  1:32   ` Andy Duan
  2018-05-22 17:45   ` David Miller
  1 sibling, 0 replies; 6+ messages in thread
From: Andy Duan @ 2018-05-21  1:32 UTC (permalink / raw)
  To: Fabio Estevam, davem; +Cc: netdev, Fabio Estevam

From: Fabio Estevam <festevam@gmail.com>  Sent: 2018年5月21日 0:55
> From: Fabio Estevam <fabio.estevam@nxp.com>
> 
> Currently there is no license information in the header of this file.
> 
> The MODULE_LICENSE field contains ("GPL"), which means GNU Public
> License v2 or later, so add a corresponding SPDX license identifier.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>

Acked-by: Fugang Duan <fugang.duan@nxp.com>

> ---
>  drivers/net/ethernet/freescale/fec_main.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/net/ethernet/freescale/fec_main.c
> b/drivers/net/ethernet/freescale/fec_main.c
> index f3e43db..1625b74 100644
> --- a/drivers/net/ethernet/freescale/fec_main.c
> +++ b/drivers/net/ethernet/freescale/fec_main.c
> @@ -1,3 +1,4 @@
> +// SPDX-License-Identifier: GPL-2.0+
>  /*
>   * Fast Ethernet Controller (FEC) driver for Motorola MPC8xx.
>   * Copyright (c) 1997 Dan Malek (dmalek@jlc.net)
> --
> 2.7.4


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

* RE: [PATCH 1/2] net: fec: ptp: Switch to SPDX identifier
  2018-05-20 16:55 [PATCH 1/2] net: fec: ptp: Switch to SPDX identifier Fabio Estevam
  2018-05-20 16:55 ` [PATCH 2/2] net: fec: Add a " Fabio Estevam
@ 2018-05-21  1:32 ` Andy Duan
  2018-05-22 17:45 ` David Miller
  2 siblings, 0 replies; 6+ messages in thread
From: Andy Duan @ 2018-05-21  1:32 UTC (permalink / raw)
  To: Fabio Estevam, davem; +Cc: netdev, Fabio Estevam

From: Fabio Estevam <festevam@gmail.com> Sent: 2018年5月21日 0:55
> Adopt the SPDX license identifier headers to ease license compliance
> management.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>

Acked-by: Fugang Duan <fugang.duan@nxp.com>

> ---
>  drivers/net/ethernet/freescale/fec_ptp.c | 14 +-------------
>  1 file changed, 1 insertion(+), 13 deletions(-)
> 
> diff --git a/drivers/net/ethernet/freescale/fec_ptp.c
> b/drivers/net/ethernet/freescale/fec_ptp.c
> index f814397..43d9732 100644
> --- a/drivers/net/ethernet/freescale/fec_ptp.c
> +++ b/drivers/net/ethernet/freescale/fec_ptp.c
> @@ -1,20 +1,8 @@
> +// SPDX-License-Identifier: GPL-2.0
>  /*
>   * Fast Ethernet Controller (ENET) PTP driver for MX6x.
>   *
>   * Copyright (C) 2012 Freescale Semiconductor, Inc.
> - *
> - * This program is free software; you can redistribute it and/or modify it
> - * under the terms and conditions of the GNU General Public License,
> - * version 2, as published by the Free Software Foundation.
> - *
> - * This program is distributed in the hope 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.,
> - * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
>   */
> 
>  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
> --
> 2.7.4


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

* Re: [PATCH 1/2] net: fec: ptp: Switch to SPDX identifier
  2018-05-20 16:55 [PATCH 1/2] net: fec: ptp: Switch to SPDX identifier Fabio Estevam
  2018-05-20 16:55 ` [PATCH 2/2] net: fec: Add a " Fabio Estevam
  2018-05-21  1:32 ` [PATCH 1/2] net: fec: ptp: Switch to " Andy Duan
@ 2018-05-22 17:45 ` David Miller
  2 siblings, 0 replies; 6+ messages in thread
From: David Miller @ 2018-05-22 17:45 UTC (permalink / raw)
  To: festevam; +Cc: fugang.duan, netdev, fabio.estevam

From: Fabio Estevam <festevam@gmail.com>
Date: Sun, 20 May 2018 13:55:18 -0300

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

Applied.

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

* Re: [PATCH 2/2] net: fec: Add a SPDX identifier
  2018-05-20 16:55 ` [PATCH 2/2] net: fec: Add a " Fabio Estevam
  2018-05-21  1:32   ` Andy Duan
@ 2018-05-22 17:45   ` David Miller
  1 sibling, 0 replies; 6+ messages in thread
From: David Miller @ 2018-05-22 17:45 UTC (permalink / raw)
  To: festevam; +Cc: fugang.duan, netdev, fabio.estevam

From: Fabio Estevam <festevam@gmail.com>
Date: Sun, 20 May 2018 13:55:19 -0300

> From: Fabio Estevam <fabio.estevam@nxp.com>
> 
> Currently there is no license information in the header of
> this file. 
> 
> The MODULE_LICENSE field contains ("GPL"), which means
> GNU Public License v2 or later, so add a corresponding
> SPDX license identifier.
> 
> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>

Applied.

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

end of thread, other threads:[~2018-05-22 17:45 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-20 16:55 [PATCH 1/2] net: fec: ptp: Switch to SPDX identifier Fabio Estevam
2018-05-20 16:55 ` [PATCH 2/2] net: fec: Add a " Fabio Estevam
2018-05-21  1:32   ` Andy Duan
2018-05-22 17:45   ` David Miller
2018-05-21  1:32 ` [PATCH 1/2] net: fec: ptp: Switch to " Andy Duan
2018-05-22 17:45 ` David Miller

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