net: usb: convert comma to semicolon
authorZheng Yongjun <zhengyongjun3@huawei.com>
Wed, 9 Dec 2020 13:38:11 +0000 (21:38 +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/usb/cdc-phonet.c

index dba847f..02e6bbb 100644 (file)
@@ -275,7 +275,7 @@ static const struct net_device_ops usbpn_ops = {
 static void usbpn_setup(struct net_device *dev)
 {
        dev->features           = 0;
-       dev->netdev_ops         = &usbpn_ops,
+       dev->netdev_ops         = &usbpn_ops;
        dev->header_ops         = &phonet_header_ops;
        dev->type               = ARPHRD_PHONET;
        dev->flags              = IFF_POINTOPOINT | IFF_NOARP;