projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
59cb89e
)
via: fix a punctuation typo
author
wangweidong
<wangweidong1@huawei.com>
Mon, 17 Mar 2014 07:52:17 +0000
(15:52 +0800)
committer
David S. Miller
<davem@davemloft.net>
Tue, 18 Mar 2014 19:18:52 +0000
(15:18 -0400)
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>
drivers/net/ethernet/via/via-rhine.c
patch
|
blob
|
history
diff --git
a/drivers/net/ethernet/via/via-rhine.c
b/drivers/net/ethernet/via/via-rhine.c
index 5bc1a2d02dc125ebf78ba35a40012baa3f0715b9..9d93fa1205788e371a67cae6a72e3e9412a661c4 100644
(file)
--- 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);