aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/via
diff options
context:
space:
mode:
authorwangweidong <wangweidong1@huawei.com>2014-03-17 15:52:17 +0800
committerDavid S. Miller <davem@davemloft.net>2014-03-18 15:18:52 -0400
commite76070f2e0b8db1162f9537924d0929d6552b4d3 (patch)
tree847855cb76f3675ecb781a3ff2dba59bee566671 /drivers/net/ethernet/via
parentdoc: update driver TX algorithm in timestamping.txt (diff)
downloadlinux-dev-e76070f2e0b8db1162f9537924d0929d6552b4d3.tar.xz
linux-dev-e76070f2e0b8db1162f9537924d0929d6552b4d3.zip
via: fix a punctuation typo
In generic, after an assignment, we use ';' instead of ','. Although, it won't hurt. Signed-off-by: Wang Weidong <wangweidong1@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/via')
-rw-r--r--drivers/net/ethernet/via/via-rhine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/via/via-rhine.c b/drivers/net/ethernet/via/via-rhine.c
index 5bc1a2d02dc1..9d93fa120578 100644
--- a/drivers/net/ethernet/via/via-rhine.c
+++ b/drivers/net/ethernet/via/via-rhine.c
@@ -1022,7 +1022,7 @@ static int rhine_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
/* The chip-specific entries in the device structure. */
dev->netdev_ops = &rhine_netdev_ops;
- dev->ethtool_ops = &netdev_ethtool_ops,
+ dev->ethtool_ops = &netdev_ethtool_ops;
dev->watchdog_timeo = TX_TIMEOUT;
netif_napi_add(dev, &rp->napi, rhine_napipoll, 64);