aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorZheng Yongjun <zhengyongjun3@huawei.com>2020-12-09 21:37:16 +0800
committerDavid S. Miller <davem@davemloft.net>2020-12-09 16:23:08 -0800
commit011446cd2f0e49987c2236cef801084a26b822c5 (patch)
tree6e94515af804210e70e250e88ef07b17b4bbab8c
parenthisilicon/hns3: convert comma to semicolon (diff)
downloadwireguard-linux-011446cd2f0e49987c2236cef801084a26b822c5.tar.xz
wireguard-linux-011446cd2f0e49987c2236cef801084a26b822c5.zip
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>
-rw-r--r--drivers/net/ethernet/ti/davinci_mdio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ethernet/ti/davinci_mdio.c b/drivers/net/ethernet/ti/davinci_mdio.c
index 702fdc393da0..cfff3d48807a 100644
--- a/drivers/net/ethernet/ti/davinci_mdio.c
+++ b/drivers/net/ethernet/ti/davinci_mdio.c
@@ -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;