aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/bonding
diff options
context:
space:
mode:
authorWang Chen <wangchen@cn.fujitsu.com>2008-12-04 00:14:04 -0500
committerDavid S. Miller <davem@davemloft.net>2008-12-04 00:14:04 -0500
commit244ef9b9176c7c7a095f4738d353a3a60b88097d (patch)
treee1fc8266b2cd3a721659f5fa738a2cbc1441389f /drivers/net/bonding
parent97341249c4c30cf0eea5439ce2f36ee887e640fe (diff)
bond: Kill directly reference of netdev->priv
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>
Diffstat (limited to 'drivers/net/bonding')
-rw-r--r--drivers/net/bonding/bond_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
index a339a8052737..e422dbaa25b4 100644
--- a/drivers/net/bonding/bond_main.c
+++ b/drivers/net/bonding/bond_main.c
@@ -1992,7 +1992,7 @@ void bond_destroy(struct bonding *bond)
1992 1992
1993static void bond_destructor(struct net_device *bond_dev) 1993static void bond_destructor(struct net_device *bond_dev)
1994{ 1994{
1995 struct bonding *bond = bond_dev->priv; 1995 struct bonding *bond = netdev_priv(bond_dev);
1996 1996
1997 if (bond->wq) 1997 if (bond->wq)
1998 destroy_workqueue(bond->wq); 1998 destroy_workqueue(bond->wq);