aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/bonding
diff options
context:
space:
mode:
authorWang Chen <wangchen@cn.fujitsu.com>2008-12-03 21:14:04 -0800
committerDavid S. Miller <davem@davemloft.net>2008-12-03 21:14:04 -0800
commit244ef9b9176c7c7a095f4738d353a3a60b88097d (patch)
treee1fc8266b2cd3a721659f5fa738a2cbc1441389f /drivers/net/bonding
parentmptlan: Kill directly reference of netdev->priv (diff)
downloadlinux-dev-244ef9b9176c7c7a095f4738d353a3a60b88097d.tar.xz
linux-dev-244ef9b9176c7c7a095f4738d353a3a60b88097d.zip
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)
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);