All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2] driver: net: update copyright info
@ 2019-03-25 10:12 Pankaj Bansal
  2019-03-25 13:58 ` Tom Rini
  0 siblings, 1 reply; 2+ messages in thread
From: Pankaj Bansal @ 2019-03-25 10:12 UTC (permalink / raw)
  To: u-boot

Update copyright info for the issues reported after running
check-legal test.

Signed-off-by: Pankaj Bansal <pankaj.bansal@nxp.com>
---

Notes:
    V2:
    - Removed past tense from commit description and body

 drivers/net/fsl-mc/mc.c             | 3 +--
 drivers/net/ldpaa_eth/ldpaa_eth.c   | 2 +-
 drivers/net/ldpaa_eth/ldpaa_eth.h   | 2 +-
 drivers/net/ldpaa_eth/ldpaa_wriop.c | 1 +
 drivers/net/ldpaa_eth/lx2160a.c     | 2 +-
 drivers/net/phy/phy.c               | 2 ++
 include/fsl-mc/ldpaa_wriop.h        | 1 +
 include/phy.h                       | 2 ++
 8 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/drivers/net/fsl-mc/mc.c b/drivers/net/fsl-mc/mc.c
index cc59b21f9f..dc4dd4398a 100644
--- a/drivers/net/fsl-mc/mc.c
+++ b/drivers/net/fsl-mc/mc.c
@@ -1,8 +1,7 @@
 // SPDX-License-Identifier: GPL-2.0+
 /*
  * Copyright 2014 Freescale Semiconductor, Inc.
- * Copyright 2017 NXP
- * Copyright 2017-2018 NXP
+ * Copyright 2017-2019 NXP
  */
 #include <common.h>
 #include <errno.h>
diff --git a/drivers/net/ldpaa_eth/ldpaa_eth.c b/drivers/net/ldpaa_eth/ldpaa_eth.c
index 73b7ba29df..fc732c7be9 100644
--- a/drivers/net/ldpaa_eth/ldpaa_eth.c
+++ b/drivers/net/ldpaa_eth/ldpaa_eth.c
@@ -1,7 +1,7 @@
 // SPDX-License-Identifier: GPL-2.0+
 /*
  * Copyright 2014-2016 Freescale Semiconductor, Inc.
- * Copyright 2017 NXP
+ * Copyright 2017-2019 NXP
  */
 
 #include <common.h>
diff --git a/drivers/net/ldpaa_eth/ldpaa_eth.h b/drivers/net/ldpaa_eth/ldpaa_eth.h
index 3f9154b5bb..dd559bb78d 100644
--- a/drivers/net/ldpaa_eth/ldpaa_eth.h
+++ b/drivers/net/ldpaa_eth/ldpaa_eth.h
@@ -1,7 +1,7 @@
 /* SPDX-License-Identifier: GPL-2.0+ */
 /*
  * Copyright 2014-2016 Freescale Semiconductor, Inc.
- * Copyright 2017 NXP
+ * Copyright 2017-2019 NXP
  */
 
 #ifndef __LDPAA_ETH_H
diff --git a/drivers/net/ldpaa_eth/ldpaa_wriop.c b/drivers/net/ldpaa_eth/ldpaa_wriop.c
index 06a284ad68..a5a19c6b1a 100644
--- a/drivers/net/ldpaa_eth/ldpaa_wriop.c
+++ b/drivers/net/ldpaa_eth/ldpaa_wriop.c
@@ -1,6 +1,7 @@
 // SPDX-License-Identifier: GPL-2.0+
 /*
  * Copyright (C) 2015 Freescale Semiconductor
+ * Copyright 2018-2019 NXP
  */
 
 #include <common.h>
diff --git a/drivers/net/ldpaa_eth/lx2160a.c b/drivers/net/ldpaa_eth/lx2160a.c
index 1fbeb0d14b..8a71bf40a3 100644
--- a/drivers/net/ldpaa_eth/lx2160a.c
+++ b/drivers/net/ldpaa_eth/lx2160a.c
@@ -1,6 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0+
 /*
- * Copyright 2018 NXP
+ * Copyright 2018-2019 NXP
  */
 #include <common.h>
 #include <phy.h>
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c
index 0c8b29dae4..7bf8e9ef05 100644
--- a/drivers/net/phy/phy.c
+++ b/drivers/net/phy/phy.c
@@ -3,6 +3,8 @@
  * Generic PHY Management code
  *
  * Copyright 2011 Freescale Semiconductor, Inc.
+ * Copyright 2018-2019 NXP
+ *
  * author Andy Fleming
  *
  * Based loosely off of Linux's PHY Lib
diff --git a/include/fsl-mc/ldpaa_wriop.h b/include/fsl-mc/ldpaa_wriop.h
index b55c39cbb2..3f32c39ec9 100644
--- a/include/fsl-mc/ldpaa_wriop.h
+++ b/include/fsl-mc/ldpaa_wriop.h
@@ -1,6 +1,7 @@
 /* SPDX-License-Identifier: GPL-2.0+ */
 /*
  * Copyright (C) 2015 Freescale Semiconductor
+ * Copyright 2018-2019 NXP
  */
 
 #ifndef __LDPAA_WRIOP_H
diff --git a/include/phy.h b/include/phy.h
index f23ca63f3b..74d2e693eb 100644
--- a/include/phy.h
+++ b/include/phy.h
@@ -1,6 +1,8 @@
 /* SPDX-License-Identifier: GPL-2.0+ */
 /*
  * Copyright 2011 Freescale Semiconductor, Inc.
+ * Copyright 2018-2019 NXP
+ *
  *	Andy Fleming <afleming@gmail.com>
  *
  * This file pretty much stolen from Linux's mii.h/ethtool.h/phy.h
-- 
2.17.1

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

* [U-Boot] [PATCH v2] driver: net: update copyright info
  2019-03-25 10:12 [U-Boot] [PATCH v2] driver: net: update copyright info Pankaj Bansal
@ 2019-03-25 13:58 ` Tom Rini
  0 siblings, 0 replies; 2+ messages in thread
From: Tom Rini @ 2019-03-25 13:58 UTC (permalink / raw)
  To: u-boot

On Mon, Mar 25, 2019 at 10:12:12AM +0000, Pankaj Bansal wrote:

> Update copyright info for the issues reported after running
> check-legal test.
> 
> Signed-off-by: Pankaj Bansal <pankaj.bansal@nxp.com>
> ---
> 
> Notes:
>     V2:
>     - Removed past tense from commit description and body
> 
>  drivers/net/fsl-mc/mc.c             | 3 +--
>  drivers/net/ldpaa_eth/ldpaa_eth.c   | 2 +-
>  drivers/net/ldpaa_eth/ldpaa_eth.h   | 2 +-
>  drivers/net/ldpaa_eth/ldpaa_wriop.c | 1 +
>  drivers/net/ldpaa_eth/lx2160a.c     | 2 +-
>  drivers/net/phy/phy.c               | 2 ++
>  include/fsl-mc/ldpaa_wriop.h        | 1 +
>  include/phy.h                       | 2 ++
>  8 files changed, 10 insertions(+), 5 deletions(-)

NAK.  I see that NXP has not made code changes to the following files in
2019:
drivers/net/ldpaa_eth/ldpaa_eth.c
drivers/net/ldpaa_eth/ldpaa_eth.h
drivers/net/ldpaa_eth/ldpaa_wriop.c
include/fsl-mc/ldpaa_wriop.h

And drivers/net/phy/phy.c /  include/phy.h really should be only 2018 as
Joe merged it in 2019, but NXP didn't do that:
commit b3eabd82f21b4d9206622fc5aee16751d2f4be8f
Author:     Pankaj Bansal <pankaj.bansal@nxp.com>
AuthorDate: Fri Nov 16 06:26:18 2018 +0000
Commit:     Joe Hershberger <joe.hershberger@ni.com>
CommitDate: Thu Jan 24 11:35:26 2019 -0600

    net: phy: Add clause 45 identifier to phy_device
     
-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190325/7cf35d94/attachment.sig>

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

end of thread, other threads:[~2019-03-25 13:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-25 10:12 [U-Boot] [PATCH v2] driver: net: update copyright info Pankaj Bansal
2019-03-25 13:58 ` Tom Rini

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.