Skip to content

Commit

Permalink
qlcnic: remove usage of vlan_group_get_device
Browse files Browse the repository at this point in the history
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Jiri Pirko authored and David S. Miller committed Jul 21, 2011
1 parent 5526c03 commit 223bb15
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions drivers/net/qlcnic/qlcnic_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -4198,18 +4198,13 @@ static void
qlcnic_restore_indev_addr(struct net_device *netdev, unsigned long event)
{
struct qlcnic_adapter *adapter = netdev_priv(netdev);
struct vlan_group *grp;
struct net_device *dev;
u16 vid;

qlcnic_config_indev_addr(adapter, netdev, event);

grp = rcu_dereference_rtnl(netdev->vlgrp);
if (!grp)
return;

for_each_set_bit(vid, adapter->vlans, VLAN_N_VID) {
dev = vlan_group_get_device(grp, vid);
dev = __vlan_find_dev_deep(netdev, vid);
if (!dev)
continue;
qlcnic_config_indev_addr(adapter, dev, event);
Expand Down

0 comments on commit 223bb15

Please sign in to comment.