Skip to content

Commit

Permalink
net: cpmac: fix proper spacing before return statement
Browse files Browse the repository at this point in the history
This patch insert proper spaces before return statement.

Signed-off-by: Varka Bhadram <varkab@cdac.in>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Varka Bhadram authored and David S. Miller committed Jul 10, 2014
1 parent 59329d8 commit 55064ef
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions drivers/net/ethernet/ti/cpmac.c
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ static int cpmac_mdio_read(struct mii_bus *bus, int phy_id, int reg)
MDIO_PHY(phy_id));
while ((val = cpmac_read(bus->priv, CPMAC_MDIO_ACCESS(0))) & MDIO_BUSY)
cpu_relax();

return MDIO_DATA(val);
}

Expand All @@ -293,6 +294,7 @@ static int cpmac_mdio_write(struct mii_bus *bus, int phy_id,
cpu_relax();
cpmac_write(bus->priv, CPMAC_MDIO_ACCESS(0), MDIO_BUSY | MDIO_WRITE |
MDIO_REG(reg) | MDIO_PHY(phy_id) | MDIO_DATA(val));

return 0;
}

Expand All @@ -308,6 +310,7 @@ static int cpmac_mdio_reset(struct mii_bus *bus)
ar7_device_reset(AR7_RESET_BIT_MDIO);
cpmac_write(bus->priv, CPMAC_MDIO_CONTROL, MDIOC_ENABLE |
MDIOC_CLKDIV(clk_get_rate(cpmac_clk) / 2200000 - 1));

return 0;
}

Expand Down Expand Up @@ -537,6 +540,7 @@ static int cpmac_poll(struct napi_struct *napi, int budget)
cpmac_hw_stop(priv->dev);
if (!schedule_work(&priv->reset_work))
atomic_dec(&priv->reset_pending);

return 0;

}
Expand Down Expand Up @@ -883,6 +887,7 @@ static int cpmac_set_ringparam(struct net_device *dev,
if (netif_running(dev))
return -EBUSY;
priv->ring_size = ring->rx_pending;

return 0;
}

Expand Down Expand Up @@ -1076,6 +1081,7 @@ static int cpmac_stop(struct net_device *dev)
dma_free_coherent(&dev->dev, sizeof(struct cpmac_desc) *
(CPMAC_QUEUES + priv->ring_size),
priv->desc_ring, priv->dma_ring);

return 0;
}

Expand Down Expand Up @@ -1178,6 +1184,7 @@ static int cpmac_probe(struct platform_device *pdev)
"mac: %pM\n", (void *)mem->start, dev->irq,
priv->phy_name, dev->dev_addr);
}

return 0;

fail:
Expand All @@ -1191,6 +1198,7 @@ static int cpmac_remove(struct platform_device *pdev)

unregister_netdev(dev);
free_netdev(dev);

return 0;
}

Expand Down

0 comments on commit 55064ef

Please sign in to comment.