]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
net: ethernet: ti: convert comma to semicolon
authorZheng Yongjun <zhengyongjun3@huawei.com>
Wed, 9 Dec 2020 13:37:16 +0000 (21:37 +0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 10 Dec 2020 00:23:08 +0000 (16:23 -0800)
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>
drivers/net/ethernet/ti/davinci_mdio.c

index 702fdc393da0077e06bfe09c96164d187ac42b9d..cfff3d48807a4e3078a297c545bcbe3b2e391ae9 100644 (file)
@@ -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;