diff options
author | Lutz Jaenicke <ljaenicke@innominate.com> | 2013-08-28 07:34:31 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-08-30 17:30:36 -0400 |
commit | 7174012955d0e545e5253192e2cd37fedbc405f9 (patch) | |
tree | fe5ad0d1975fa9ad67c13e821ba0851cfba261b1 /drivers/net/macvlan.c | |
parent | e2a240c7d3bcebf90936cc7c22c2729b3a4cec1f (diff) |
macvlan: fix typo in assignment
commit 3b04ddde02cf1b6f14f2697da5c20eca5715017f
"[NET]: Move hardware header operations out of netdevice."
moved the handling into macvlan setup adding
dev->header_ops = &macvlan_hard_header_ops,
At the end of the line the ',' should have been a ';'
Signed-off-by: Lutz Jaenicke <ljaenicke@innominate.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/macvlan.c')
-rw-r--r-- | drivers/net/macvlan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c index 510a9b60fde1..201ef1712ef5 100644 --- a/drivers/net/macvlan.c +++ b/drivers/net/macvlan.c | |||
@@ -686,7 +686,7 @@ void macvlan_common_setup(struct net_device *dev) | |||
686 | dev->priv_flags |= IFF_UNICAST_FLT; | 686 | dev->priv_flags |= IFF_UNICAST_FLT; |
687 | dev->netdev_ops = &macvlan_netdev_ops; | 687 | dev->netdev_ops = &macvlan_netdev_ops; |
688 | dev->destructor = free_netdev; | 688 | dev->destructor = free_netdev; |
689 | dev->header_ops = &macvlan_hard_header_ops, | 689 | dev->header_ops = &macvlan_hard_header_ops; |
690 | dev->ethtool_ops = &macvlan_ethtool_ops; | 690 | dev->ethtool_ops = &macvlan_ethtool_ops; |
691 | } | 691 | } |
692 | EXPORT_SYMBOL_GPL(macvlan_common_setup); | 692 | EXPORT_SYMBOL_GPL(macvlan_common_setup); |