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

Commit de82a6db authored by Aybuke Ozdemir's avatar Aybuke Ozdemir Committed by Peter P Waskiewicz Jr
Browse files

staging: octeon: ethernet-mdio.c Fix line over 80 characters.



Fix checkpatch.pl issue with
line over 80 characters in ethernet-mdio.c

Signed-off-by: default avatarAybuke Ozdemir <aybuke.147@gmail.com>
Signed-off-by: default avatarPeter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
parent 7d057e7d
Loading
Loading
Loading
Loading
+8 −10
Original line number Diff line number Diff line
@@ -132,17 +132,15 @@ static void cvm_oct_adjust_link(struct net_device *dev)
			netif_carrier_on(dev);
			if (priv->queue != -1)
				printk_ratelimited("%s: %u Mbps %s duplex, "
						   "port %2d, queue %2d\n",
						   dev->name, priv->phydev->speed,
						   priv->phydev->duplex ?
						   "Full" : "Half",
					"port %2d, queue %2d\n", dev->name,
					priv->phydev->speed,
					priv->phydev->duplex ? "Full" : "Half",
					priv->port, priv->queue);
			else
				printk_ratelimited("%s: %u Mbps %s duplex, "
						   "port %2d, POW\n",
						   dev->name, priv->phydev->speed,
						   priv->phydev->duplex ?
						   "Full" : "Half",
					"port %2d, POW\n", dev->name,
					priv->phydev->speed,
					priv->phydev->duplex ? "Full" : "Half",
					priv->port);
		} else {
			netif_carrier_off(dev);