diff options
author | Eli Cohen <eli@dev.mellanox.co.il> | 2015-04-02 10:07:21 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-04-02 16:33:40 -0400 |
commit | 7bef7ad24b9aa15cb06870f78ba8bd84bb7e1407 (patch) | |
tree | c0c67dbc65b3697a68d5757dfdb598f8be04d434 | |
parent | c3c6c9c810e100ab92c782e855f9ab9991065f4e (diff) |
net/mlx5_core: Coding style fix
Put a line of space before return and next statement.
Signed-off-by: Eli Cohen <eli@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/infiniband/hw/mlx5/qp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/infiniband/hw/mlx5/qp.c b/drivers/infiniband/hw/mlx5/qp.c index 2c0f142cd3ba..859c136911e0 100644 --- a/drivers/infiniband/hw/mlx5/qp.c +++ b/drivers/infiniband/hw/mlx5/qp.c | |||
@@ -1162,6 +1162,7 @@ static void destroy_qp_common(struct mlx5_ib_dev *dev, struct mlx5_ib_qp *qp) | |||
1162 | in = kzalloc(sizeof(*in), GFP_KERNEL); | 1162 | in = kzalloc(sizeof(*in), GFP_KERNEL); |
1163 | if (!in) | 1163 | if (!in) |
1164 | return; | 1164 | return; |
1165 | |||
1165 | if (qp->state != IB_QPS_RESET) { | 1166 | if (qp->state != IB_QPS_RESET) { |
1166 | mlx5_ib_qp_disable_pagefaults(qp); | 1167 | mlx5_ib_qp_disable_pagefaults(qp); |
1167 | if (mlx5_core_qp_modify(dev->mdev, to_mlx5_state(qp->state), | 1168 | if (mlx5_core_qp_modify(dev->mdev, to_mlx5_state(qp->state), |