diff options
author | Marek Vasut <[email protected]> | 2016-05-26 00:40:05 +0200 |
---|---|---|
committer | David S. Miller <[email protected]> | 2016-05-25 22:13:15 -0700 |
commit | 3424d9be8f09649e6290d066c5c3cccff1c0ce77 (patch) | |
tree | 77e37edbeda1b2627b31ee3e5ed2e5386057672a | |
parent | 643d60bf575daaba93c1ac0d0e1c4b1d4ded1f75 (diff) |
net: arc: trivial: Replace comma with a semicolon
Fix a typo in the driver, replace comma with a semicolon at the end
of statement. While using comma is a legal C here and probably does
not even generate compiler warning, it was unlikely the intention.
Signed-off-by: Marek Vasut <[email protected]>
Cc: David S. Miller <[email protected]>
Cc: Caesar Wang <[email protected]>
Cc: Heiko Stuebner <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
-rw-r--r-- | drivers/net/ethernet/arc/emac_mdio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/arc/emac_mdio.c b/drivers/net/ethernet/arc/emac_mdio.c index 16419f550eff..058460bdd5a6 100644 --- a/drivers/net/ethernet/arc/emac_mdio.c +++ b/drivers/net/ethernet/arc/emac_mdio.c @@ -141,7 +141,7 @@ int arc_mdio_probe(struct arc_emac_priv *priv) priv->bus = bus; bus->priv = priv; bus->parent = priv->dev; - bus->name = "Synopsys MII Bus", + bus->name = "Synopsys MII Bus"; bus->read = &arc_mdio_read; bus->write = &arc_mdio_write; bus->reset = &arc_mdio_reset; |