diff options
Diffstat (limited to 'drivers/net/mac89x0.c')
-rw-r--r-- | drivers/net/mac89x0.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/mac89x0.c b/drivers/net/mac89x0.c index 23b633e2ac42..c292a608f9a9 100644 --- a/drivers/net/mac89x0.c +++ b/drivers/net/mac89x0.c | |||
@@ -568,9 +568,7 @@ static void set_multicast_list(struct net_device *dev) | |||
568 | if(dev->flags&IFF_PROMISC) | 568 | if(dev->flags&IFF_PROMISC) |
569 | { | 569 | { |
570 | lp->rx_mode = RX_ALL_ACCEPT; | 570 | lp->rx_mode = RX_ALL_ACCEPT; |
571 | } | 571 | } else if ((dev->flags & IFF_ALLMULTI) || !netdev_mc_empty(dev)) { |
572 | else if((dev->flags&IFF_ALLMULTI)||dev->mc_list) | ||
573 | { | ||
574 | /* The multicast-accept list is initialized to accept-all, and we | 572 | /* The multicast-accept list is initialized to accept-all, and we |
575 | rely on higher-level filtering for now. */ | 573 | rely on higher-level filtering for now. */ |
576 | lp->rx_mode = RX_MULTCAST_ACCEPT; | 574 | lp->rx_mode = RX_MULTCAST_ACCEPT; |