bond: Kill directly reference of netdev->priv
authorWang Chen <wangchen@cn.fujitsu.com>
Thu, 4 Dec 2008 05:14:04 +0000 (21:14 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 4 Dec 2008 05:14:04 +0000 (21:14 -0800)
Simply replace netdev->priv with netdev_priv().

Signed-off-by: Wang Chen <wangchen@cn.fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/bonding/bond_main.c

index a339a80..e422dba 100644 (file)
@@ -1992,7 +1992,7 @@ void bond_destroy(struct bonding *bond)
 
 static void bond_destructor(struct net_device *bond_dev)
 {
-       struct bonding *bond = bond_dev->priv;
+       struct bonding *bond = netdev_priv(bond_dev);
 
        if (bond->wq)
                destroy_workqueue(bond->wq);