diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2017-02-28 15:02:15 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-03-01 09:50:58 -0800 |
commit | b2d0fe35471d1a71471f99147ffb5986bd60e744 (patch) | |
tree | f7980f13a111f3555f1081fd95c2348306ec8306 /include/linux/mlx4 | |
parent | 4f3de46f7a57a8ecc16c7ef69c6917b3731a7c5f (diff) |
net/mlx4: && vs & typo
Bitwise & was obviously intended here.
Fixes: 745d8ae4622c ("net/mlx4: Spoofcheck and zero MAC can't coexist")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Tariq Toukan <tariqt@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/mlx4')
-rw-r--r-- | include/linux/mlx4/driver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mlx4/driver.h b/include/linux/mlx4/driver.h index e965e5090d96..a858bcb6220b 100644 --- a/include/linux/mlx4/driver.h +++ b/include/linux/mlx4/driver.h @@ -109,7 +109,7 @@ static inline void mlx4_u64_to_mac(u8 *addr, u64 mac) int i; for (i = ETH_ALEN; i > 0; i--) { - addr[i - 1] = mac && 0xFF; + addr[i - 1] = mac & 0xFF; mac >>= 8; } } |