Move constants to the right of binary operators.

Generated by: scripts/coccinelle/misc/compare_const_fl.cocci

CC: Faisal Latif <faisal.la...@intel.com>
Signed-off-by: Fengguang Wu <fengguang...@intel.com>
Signed-off-by: Julia Lawall <julia.law...@lip6.fr>

---

It's a minor point, but when I first looked at the code, I thought that 
MIN and MAX were inverted, so it could be good to change.

 i40iw_ctrl.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/infiniband/hw/i40iw/i40iw_ctrl.c
+++ b/drivers/infiniband/hw/i40iw/i40iw_ctrl.c
@@ -1664,7 +1664,7 @@ static enum i40iw_status_code i40iw_sc_c
 {
        u32 pble_obj_cnt;
 
-       if (I40IW_MIN_CQ_SIZE > info->num_elem || I40IW_MAX_CQ_SIZE < 
info->num_elem)
+       if (info->num_elem < I40IW_MIN_CQ_SIZE || info->num_elem > 
I40IW_MAX_CQ_SIZE)
                return I40IW_ERR_INVALID_SIZE;
 
        if (info->ceq_id > I40IW_MAX_CEQID)
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to