aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/mlx5/main.c
diff options
context:
space:
mode:
authorErez Alfasi <ereza@mellanox.com>2019-10-02 15:25:16 +0300
committerJason Gunthorpe <jgg@mellanox.com>2019-10-04 15:38:16 -0300
commit6f26b2ac699cc53f7da9598be6151818461af2a1 (patch)
tree8128d03ea16ddbefa09d06ded26449d1faa4a6e9 /drivers/infiniband/hw/mlx5/main.c
parentIB/mlx5: Remove unnecessary return statement (diff)
downloadlinux-dev-6f26b2ac699cc53f7da9598be6151818461af2a1.tar.xz
linux-dev-6f26b2ac699cc53f7da9598be6151818461af2a1.zip
IB/mlx5: Remove unnecessary else statement
'else' is not generally useful after a break or return. Remove this unnecessary statement. Link: https://lore.kernel.org/r/20191002122517.17721-4-leon@kernel.org Signed-off-by: Erez Alfasi <ereza@mellanox.com> Signed-off-by: Leon Romanovsky <leonro@mellanox.com> Reviewed-by: Jason Gunthorpe <jgg@mellanox.com> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to '')
-rw-r--r--drivers/infiniband/hw/mlx5/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/infiniband/hw/mlx5/main.c b/drivers/infiniband/hw/mlx5/main.c
index 831539419c30..b95c2b05f682 100644
--- a/drivers/infiniband/hw/mlx5/main.c
+++ b/drivers/infiniband/hw/mlx5/main.c
@@ -844,8 +844,8 @@ static int mlx5_ib_query_device(struct ib_device *ibdev,
resp_len = sizeof(resp.comp_mask) + sizeof(resp.response_length);
if (uhw->outlen && uhw->outlen < resp_len)
return -EINVAL;
- else
- resp.response_length = resp_len;
+
+ resp.response_length = resp_len;
if (uhw->inlen && !ib_is_udata_cleared(uhw, 0, uhw->inlen))
return -EINVAL;