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

Commit abfc89c7 authored by Tobias Klauser's avatar Tobias Klauser Committed by David S. Miller
Browse files

net: rionet: Use is_multicast_ether_addr

parent 8bc3e1d8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -190,7 +190,7 @@ static int rionet_start_xmit(struct sk_buff *skb, struct net_device *ndev)
		return NETDEV_TX_BUSY;
	}

	if (eth->h_dest[0] & 0x01) {
	if (is_multicast_ether_addr(eth->h_dest)) {
		for (i = 0; i < RIO_MAX_ROUTE_ENTRIES(rnet->mport->sys_size);
				i++)
			if (rionet_active[i])