aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
diff options
context:
space:
mode:
authorLang Cheng <chenglang@huawei.com>2019-08-08 22:53:45 +0800
committerDoug Ledford <dledford@redhat.com>2019-08-12 10:45:08 -0400
commitb5c229dc1585adcbe158ecaebb5e6993c9c220b6 (patch)
tree7d7eae1cefb21a56ae01fde18d6a2be731430f34 /drivers/infiniband/hw/hns/hns_roce_hw_v2.c
parentRDMA/hns: Remove unnessary init for cmq reg (diff)
downloadlinux-dev-b5c229dc1585adcbe158ecaebb5e6993c9c220b6.tar.xz
linux-dev-b5c229dc1585adcbe158ecaebb5e6993c9c220b6.zip
RDMA/hns: Clean up unnecessary initial assignment
Here remove some unncessary initialization for some valiables. Signed-off-by: Lang Cheng <chenglang@huawei.com> Signed-off-by: Lijun Ou <oulijun@huawei.com> Link: https://lore.kernel.org/r/1565276034-97329-6-git-send-email-oulijun@huawei.com Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to '')
-rw-r--r--drivers/infiniband/hw/hns/hns_roce_hw_v2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
index 2a30a91a9824..8566a6830643 100644
--- a/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
+++ b/drivers/infiniband/hw/hns/hns_roce_hw_v2.c
@@ -239,7 +239,7 @@ static int hns_roce_v2_post_send(struct ib_qp *ibqp,
struct device *dev = hr_dev->dev;
struct hns_roce_v2_db sq_db;
struct ib_qp_attr attr;
- unsigned int sge_ind = 0;
+ unsigned int sge_ind;
unsigned int owner_bit;
unsigned long flags;
unsigned int ind;
@@ -4291,7 +4291,7 @@ static int hns_roce_v2_modify_qp(struct ib_qp *ibqp,
struct hns_roce_v2_qp_context *context;
struct hns_roce_v2_qp_context *qpc_mask;
struct device *dev = hr_dev->dev;
- int ret = -EINVAL;
+ int ret;
context = kcalloc(2, sizeof(*context), GFP_ATOMIC);
if (!context)