RDMA/hns: Remove unnecessary operator
authoroulijun <oulijun@huawei.com>
Tue, 30 Jan 2018 12:20:43 +0000 (20:20 +0800)
committerJason Gunthorpe <jgg@mellanox.com>
Thu, 1 Feb 2018 22:24:32 +0000 (15:24 -0700)
The double not-operator is unncessary when used in a boolean context. This
patch removes them.

Signed-off-by: Lijun Ou <oulijun@huawei.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/hw/hns/hns_roce_hw_v2.c

index 256fe110107acc2080b48099b0883c88905e9e04..fd9592a10ccf330507aaad5f8d0189a6625a0e91 100644 (file)
@@ -2123,10 +2123,10 @@ static void set_access_flags(struct hns_roce_qp *hr_qp,
        u8 dest_rd_atomic;
        u32 access_flags;
 
-       dest_rd_atomic = !!(attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) ?
+       dest_rd_atomic = (attr_mask & IB_QP_MAX_DEST_RD_ATOMIC) ?
                         attr->max_dest_rd_atomic : hr_qp->resp_depth;
 
-       access_flags = !!(attr_mask & IB_QP_ACCESS_FLAGS) ?
+       access_flags = (attr_mask & IB_QP_ACCESS_FLAGS) ?
                       attr->qp_access_flags : hr_qp->atomic_rd_en;
 
        if (!dest_rd_atomic)