Commit 8bc3e1d8a16e6ef501af1c4d3abd7a90b4db1c0f

Authored by Tobias Klauser
Committed by David S. Miller
1 parent 58d14d4fba

net: iseries_veth: Use is_unicast_ether_addr helper

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/net/iseries_veth.c
... ... @@ -1182,7 +1182,7 @@
1182 1182 struct veth_port *port = netdev_priv(dev);
1183 1183 HvLpIndexMap lpmask;
1184 1184  
1185   - if (! (frame[0] & 0x01)) {
  1185 + if (is_unicast_ether_addr(frame)) {
1186 1186 /* unicast packet */
1187 1187 HvLpIndex rlp = frame[5];
1188 1188