diff options
author | Jiri Pirko <jpirko@redhat.com> | 2010-01-25 16:36:10 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-01-25 16:36:10 -0500 |
commit | 32e7bfc41110bc8f29ec0f293c3bcee6645fef34 (patch) | |
tree | b770a040aee7a6a196514cbf5328debb33321d4d /drivers/net/niu.c | |
parent | 9010bc3364db56dd88a1851e0797e597e322ce08 (diff) |
net: use helpers to access uc list V2
This patch introduces three macros to work with uc list from net drivers.
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/niu.c')
-rw-r--r-- | drivers/net/niu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/niu.c b/drivers/net/niu.c index 0e260cfbff7b..af9a8647c7e8 100644 --- a/drivers/net/niu.c +++ b/drivers/net/niu.c | |||
@@ -6372,7 +6372,7 @@ static void niu_set_rx_mode(struct net_device *dev) | |||
6372 | if ((dev->flags & IFF_ALLMULTI) || (dev->mc_count > 0)) | 6372 | if ((dev->flags & IFF_ALLMULTI) || (dev->mc_count > 0)) |
6373 | np->flags |= NIU_FLAGS_MCAST; | 6373 | np->flags |= NIU_FLAGS_MCAST; |
6374 | 6374 | ||
6375 | alt_cnt = dev->uc.count; | 6375 | alt_cnt = netdev_uc_count(dev); |
6376 | if (alt_cnt > niu_num_alt_addr(np)) { | 6376 | if (alt_cnt > niu_num_alt_addr(np)) { |
6377 | alt_cnt = 0; | 6377 | alt_cnt = 0; |
6378 | np->flags |= NIU_FLAGS_PROMISC; | 6378 | np->flags |= NIU_FLAGS_PROMISC; |
@@ -6381,7 +6381,7 @@ static void niu_set_rx_mode(struct net_device *dev) | |||
6381 | if (alt_cnt) { | 6381 | if (alt_cnt) { |
6382 | int index = 0; | 6382 | int index = 0; |
6383 | 6383 | ||
6384 | list_for_each_entry(ha, &dev->uc.list, list) { | 6384 | netdev_for_each_uc_addr(ha, dev) { |
6385 | err = niu_set_alt_mac(np, index, ha->addr); | 6385 | err = niu_set_alt_mac(np, index, ha->addr); |
6386 | if (err) | 6386 | if (err) |
6387 | printk(KERN_WARNING PFX "%s: Error %d " | 6387 | printk(KERN_WARNING PFX "%s: Error %d " |