Commit 011446cd authored by Zheng Yongjun's avatar Zheng Yongjun Committed by David S. Miller
Browse files

net: ethernet: ti: convert comma to semicolon



Replace a comma between expression statements by a semicolon.

Signed-off-by: default avatarZheng Yongjun <zhengyongjun3@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 474d8fef
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -381,9 +381,9 @@ static int davinci_mdio_probe(struct platform_device *pdev)
	}

	data->bus->name		= dev_name(dev);
	data->bus->read		= davinci_mdio_read,
	data->bus->write	= davinci_mdio_write,
	data->bus->reset	= davinci_mdio_reset,
	data->bus->read		= davinci_mdio_read;
	data->bus->write	= davinci_mdio_write;
	data->bus->reset	= davinci_mdio_reset;
	data->bus->parent	= dev;
	data->bus->priv		= data;