diff options
author | Jiri Pirko <jpirko@redhat.com> | 2010-02-23 04:19:49 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-02-26 05:07:30 -0500 |
commit | f9dcbcc9e338d08c0f7de7eba4eaafbbb7f81249 (patch) | |
tree | 8a1d9a37bc057440220a5ad23231e0fe974b93f6 /drivers/net/ks8851_mll.c | |
parent | 52c793f24054f5dc30d228e37e0e19cc8313f086 (diff) |
net: convert multiple drivers to use netdev_for_each_mc_addr, part5 V2
removed some needless checks and also corrected bug in lp486e (dmi was passed
instead of dmi->dmi_addr)
Signed-off-by: Jiri Pirko <jpirko@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ks8851_mll.c')
-rw-r--r-- | drivers/net/ks8851_mll.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/ks8851_mll.c b/drivers/net/ks8851_mll.c index ffffb3889704..84b0e15831f9 100644 --- a/drivers/net/ks8851_mll.c +++ b/drivers/net/ks8851_mll.c | |||
@@ -1196,7 +1196,8 @@ static void ks_set_rx_mode(struct net_device *netdev) | |||
1196 | if ((netdev->flags & IFF_MULTICAST) && netdev_mc_count(netdev)) { | 1196 | if ((netdev->flags & IFF_MULTICAST) && netdev_mc_count(netdev)) { |
1197 | if (netdev_mc_count(netdev) <= MAX_MCAST_LST) { | 1197 | if (netdev_mc_count(netdev) <= MAX_MCAST_LST) { |
1198 | int i = 0; | 1198 | int i = 0; |
1199 | for (ptr = netdev->mc_list; ptr; ptr = ptr->next) { | 1199 | |
1200 | netdev_for_each_mc_addr(ptr, netdev) { | ||
1200 | if (!(*ptr->dmi_addr & 1)) | 1201 | if (!(*ptr->dmi_addr & 1)) |
1201 | continue; | 1202 | continue; |
1202 | if (i >= MAX_MCAST_LST) | 1203 | if (i >= MAX_MCAST_LST) |