net/mlx5e: Place constants on the right side of comparisons
authorOr Gerlitz <ogerlitz@mellanox.com>
Tue, 11 Jul 2017 13:10:50 +0000 (16:10 +0300)
committerSaeed Mahameed <saeedm@mellanox.com>
Sun, 20 Aug 2017 09:57:19 +0000 (12:57 +0300)
To fix these checkpatch complaints:

WARNING: Comparisons should place the constant on the right side of the test

Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
drivers/net/ethernet/mellanox/mlx5/core/en_rx.c

index 8e224bcbc6a65dd8e7ef17f5123b1b7aaab5ac8b..55a6786d3c4ccb7ecb44dce4eaeab1b66f894456 100644 (file)
@@ -509,8 +509,8 @@ static void mlx5e_lro_update_hdr(struct sk_buff *skb, struct mlx5_cqe64 *cqe,
        u16 tot_len;
 
        u8 l4_hdr_type = get_cqe_l4_hdr_type(cqe);
-       int tcp_ack = ((CQE_L4_HDR_TYPE_TCP_ACK_NO_DATA  == l4_hdr_type) ||
-                      (CQE_L4_HDR_TYPE_TCP_ACK_AND_DATA == l4_hdr_type));
+       int tcp_ack = ((l4_hdr_type == CQE_L4_HDR_TYPE_TCP_ACK_NO_DATA) ||
+                      (l4_hdr_type == CQE_L4_HDR_TYPE_TCP_ACK_AND_DATA));
 
        skb->mac_len = ETH_HLEN;
        proto = __vlan_get_protocol(skb, eth->h_proto, &network_depth);