staging: mt7621-eth: Fix line over 80 characters
authorKamal Heib <kamalheib1@gmail.com>
Wed, 9 May 2018 12:40:10 +0000 (15:40 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 14 May 2018 12:03:46 +0000 (14:03 +0200)
This change fixes all the lines that get over 80 characters.

Signed-off-by: Kamal Heib <kamalheib1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/mt7621-eth/ethtool.c
drivers/staging/mt7621-eth/gsw_mt7621.c
drivers/staging/mt7621-eth/mdio.c
drivers/staging/mt7621-eth/soc_mt7621.c

index 7c059cd..8270fea 100644 (file)
@@ -53,7 +53,8 @@ static int mtk_set_link_ksettings(struct net_device *dev,
                        mac->phy_dev = mac->hw->phy->phy[cmd->base.phy_address];
                        mac->phy_flags = MTK_PHY_FLAG_PORT;
                } else if (mac->hw->mii_bus) {
-                       mac->phy_dev = mdiobus_get_phy(mac->hw->mii_bus, cmd->base.phy_address);
+                       mac->phy_dev = mdiobus_get_phy(mac->hw->mii_bus,
+                                                      cmd->base.phy_address);
                        if (!mac->phy_dev)
                                return -ENODEV;
                        mac->phy_flags = MTK_PHY_FLAG_ATTACH;
index 2d2272e..2c07b55 100644 (file)
@@ -205,7 +205,8 @@ static void mt7621_hw_init(struct mtk_eth *eth, struct mt7620_gsw *gsw,
                for (i = 0; i < MT7530_NUM_PORTS; i++)
                        mt7530_mdio_w32(gsw, REG_ESW_PORT_PCR(i), 0x00400000);
 
-               mt7530_mdio_w32(gsw, REG_ESW_PORT_PCR(MT7530_CPU_PORT), 0x00ff0000);
+               mt7530_mdio_w32(gsw, REG_ESW_PORT_PCR(MT7530_CPU_PORT),
+                               0x00ff0000);
 
                for (i = 0; i < MT7530_NUM_PORTS; i++)
                        mt7530_mdio_w32(gsw, REG_ESW_PORT_PVC(i), 0x810000c0);
index 943ed2f..7ad0c41 100644 (file)
@@ -162,7 +162,8 @@ static void mtk_phy_disconnect(struct mtk_mac *mac)
                } else if (eth->phy->phy[i]) {
                        phy_disconnect(eth->phy->phy[i]);
                } else if (eth->mii_bus) {
-                       struct phy_device *phy = mdiobus_get_phy(eth->mii_bus, i);
+                       struct phy_device *phy =
+                               mdiobus_get_phy(eth->mii_bus, i);
 
                        if (phy)
                                phy_detach(phy);
index 3dd7d8d..5d63b5d 100644 (file)
@@ -107,13 +107,15 @@ static void mt7621_set_mac(struct mtk_mac *mac, unsigned char *hwaddr)
 
        spin_lock_irqsave(&mac->hw->page_lock, flags);
        if (mac->id == 0) {
-               mtk_w32(mac->hw, (hwaddr[0] << 8) | hwaddr[1], GSW_REG_GDMA1_MAC_ADRH);
+               mtk_w32(mac->hw, (hwaddr[0] << 8) | hwaddr[1],
+                       GSW_REG_GDMA1_MAC_ADRH);
                mtk_w32(mac->hw, (hwaddr[2] << 24) | (hwaddr[3] << 16) |
                        (hwaddr[4] << 8) | hwaddr[5],
                        GSW_REG_GDMA1_MAC_ADRL);
        }
        if (mac->id == 1) {
-               mtk_w32(mac->hw, (hwaddr[0] << 8) | hwaddr[1], GSW_REG_GDMA2_MAC_ADRH);
+               mtk_w32(mac->hw, (hwaddr[0] << 8) | hwaddr[1],
+                       GSW_REG_GDMA2_MAC_ADRH);
                mtk_w32(mac->hw, (hwaddr[2] << 24) | (hwaddr[3] << 16) |
                        (hwaddr[4] << 8) | hwaddr[5],
                        GSW_REG_GDMA2_MAC_ADRL);