Skip to content

Commit 3424d9b

Browse files
Marek Vasutdavem330
authored andcommitted
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]>
1 parent 643d60b commit 3424d9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/ethernet/arc/emac_mdio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ int arc_mdio_probe(struct arc_emac_priv *priv)
141141
priv->bus = bus;
142142
bus->priv = priv;
143143
bus->parent = priv->dev;
144-
bus->name = "Synopsys MII Bus",
144+
bus->name = "Synopsys MII Bus";
145145
bus->read = &arc_mdio_read;
146146
bus->write = &arc_mdio_write;
147147
bus->reset = &arc_mdio_reset;

0 commit comments

Comments
 (0)