Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dbf812d6 authored by YOSHIFUJI Hideaki / 吉藤英明's avatar YOSHIFUJI Hideaki / 吉藤英明 Committed by Jeff Garzik
Browse files

ARM/ETHER3: Handle multicast frames.

parent 82a0244d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -464,7 +464,7 @@ static void ether3_setmulticastlist(struct net_device *dev)
	if (dev->flags & IFF_PROMISC) {
		/* promiscuous mode */
		priv(dev)->regs.config1 |= CFG1_RECVPROMISC;
	} else if (dev->flags & IFF_ALLMULTI) {
	} else if (dev->flags & IFF_ALLMULTI || dev->mc_count) {
		priv(dev)->regs.config1 |= CFG1_RECVSPECBRMULTI;
	} else
		priv(dev)->regs.config1 |= CFG1_RECVSPECBROAD;