diff options
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) |