Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8bbe833a authored by Andrew Lunn's avatar Andrew Lunn Committed by David S. Miller
Browse files

net: phy: Add SDPX tag based on COPYING file



Some of the PHY and MDIO drivers refer to the COPYING file in the main
directory of this archive. This is the main license for Linux, thus
GPLv2 plus syscall extension.

Fixup the MODULE_LICENSE() where needed and add an SDPX header for
GPLv2.

Cc: David Daney <david.daney@cavium.com>
Signed-off-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5f857575
Loading
Loading
Loading
Loading
+2 −5
Original line number Original line Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0
/*
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2011 - 2012 Cavium, Inc.
 * Copyright (C) 2011 - 2012 Cavium, Inc.
 */
 */


@@ -221,4 +218,4 @@ static struct phy_driver bcm87xx_driver[] = {


module_phy_driver(bcm87xx_driver);
module_phy_driver(bcm87xx_driver);


MODULE_LICENSE("GPL");
MODULE_LICENSE("GPL v2");
+2 −5
Original line number Original line Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0
/*
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2009-2016 Cavium, Inc.
 * Copyright (C) 2009-2016 Cavium, Inc.
 */
 */


@@ -150,4 +147,4 @@ EXPORT_SYMBOL(cavium_mdiobus_write);


MODULE_DESCRIPTION("Common code for OCTEON and Thunder MDIO bus drivers");
MODULE_DESCRIPTION("Common code for OCTEON and Thunder MDIO bus drivers");
MODULE_AUTHOR("David Daney");
MODULE_AUTHOR("David Daney");
MODULE_LICENSE("GPL");
MODULE_LICENSE("GPL v2");
+1 −4
Original line number Original line Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0
/*
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2009-2016 Cavium, Inc.
 * Copyright (C) 2009-2016 Cavium, Inc.
 */
 */


+2 −5
Original line number Original line Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0
/*
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2011, 2012 Cavium, Inc.
 * Copyright (C) 2011, 2012 Cavium, Inc.
 */
 */


@@ -103,4 +100,4 @@ module_platform_driver(mdio_mux_gpio_driver);
MODULE_DESCRIPTION(DRV_DESCRIPTION);
MODULE_DESCRIPTION(DRV_DESCRIPTION);
MODULE_VERSION(DRV_VERSION);
MODULE_VERSION(DRV_VERSION);
MODULE_AUTHOR("David Daney");
MODULE_AUTHOR("David Daney");
MODULE_LICENSE("GPL");
MODULE_LICENSE("GPL v2");
+2 −5
Original line number Original line Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0
/*
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2011, 2012 Cavium, Inc.
 * Copyright (C) 2011, 2012 Cavium, Inc.
 */
 */


@@ -210,4 +207,4 @@ EXPORT_SYMBOL_GPL(mdio_mux_uninit);


MODULE_DESCRIPTION(DRV_DESCRIPTION);
MODULE_DESCRIPTION(DRV_DESCRIPTION);
MODULE_AUTHOR("David Daney");
MODULE_AUTHOR("David Daney");
MODULE_LICENSE("GPL");
MODULE_LICENSE("GPL v2");
Loading