]> Pileus Git - ~andy/linux/commitdiff
macvlan: fix typo in assignment
authorLutz Jaenicke <ljaenicke@innominate.com>
Wed, 28 Aug 2013 11:34:31 +0000 (13:34 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 30 Aug 2013 21:30:36 +0000 (17:30 -0400)
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>
drivers/net/macvlan.c

index 510a9b60fde1d2881d322a3278cc1613210bd54a..201ef1712ef5cfc9366b10519c142829a975d1af 100644 (file)
@@ -686,7 +686,7 @@ void macvlan_common_setup(struct net_device *dev)
        dev->priv_flags        |= IFF_UNICAST_FLT;
        dev->netdev_ops         = &macvlan_netdev_ops;
        dev->destructor         = free_netdev;
-       dev->header_ops         = &macvlan_hard_header_ops,
+       dev->header_ops         = &macvlan_hard_header_ops;
        dev->ethtool_ops        = &macvlan_ethtool_ops;
 }
 EXPORT_SYMBOL_GPL(macvlan_common_setup);