net: ethernet: ti: convert comma to semicolon
Replace a comma between expression statements by a semicolon. Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
474d8feffb
commit
011446cd2f
|
@ -381,9 +381,9 @@ static int davinci_mdio_probe(struct platform_device *pdev)
|
||||||
}
|
}
|
||||||
|
|
||||||
data->bus->name = dev_name(dev);
|
data->bus->name = dev_name(dev);
|
||||||
data->bus->read = davinci_mdio_read,
|
data->bus->read = davinci_mdio_read;
|
||||||
data->bus->write = davinci_mdio_write,
|
data->bus->write = davinci_mdio_write;
|
||||||
data->bus->reset = davinci_mdio_reset,
|
data->bus->reset = davinci_mdio_reset;
|
||||||
data->bus->parent = dev;
|
data->bus->parent = dev;
|
||||||
data->bus->priv = data;
|
data->bus->priv = data;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue