Skip to content

Commit 9f46360

Browse files
Colin Ian KingSaeed Mahameed
authored andcommitted
net/mlx5: remove some extraneous spaces in indentations
There are several lines where there is an extraneous space causing indentation misalignment. Remove them. Cleans up Cocconelle warnings: ./drivers/net/ethernet/mellanox/mlx5/core/qp.c:409:3-18: code aligned with following code on line 410 ./drivers/net/ethernet/mellanox/mlx5/core/qp.c:415:3-18: code aligned with following code on line 416 ./drivers/net/ethernet/mellanox/mlx5/core/qp.c:421:3-18: code aligned with following code on line 422 Signed-off-by: Colin Ian King <[email protected]> Signed-off-by: Saeed Mahameed <[email protected]>
1 parent 60cc43f commit 9f46360

File tree

1 file changed

+9
-9
lines changed
  • drivers/net/ethernet/mellanox/mlx5/core

1 file changed

+9
-9
lines changed

drivers/net/ethernet/mellanox/mlx5/core/qp.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -407,21 +407,21 @@ static int modify_qp_mbox_alloc(struct mlx5_core_dev *dev, u16 opcode, int qpn,
407407
case MLX5_CMD_OP_RST2INIT_QP:
408408
if (MBOX_ALLOC(mbox, rst2init_qp))
409409
return -ENOMEM;
410-
MOD_QP_IN_SET_QPC(rst2init_qp, mbox->in, opcode, qpn,
411-
opt_param_mask, qpc);
412-
break;
410+
MOD_QP_IN_SET_QPC(rst2init_qp, mbox->in, opcode, qpn,
411+
opt_param_mask, qpc);
412+
break;
413413
case MLX5_CMD_OP_INIT2RTR_QP:
414414
if (MBOX_ALLOC(mbox, init2rtr_qp))
415415
return -ENOMEM;
416-
MOD_QP_IN_SET_QPC(init2rtr_qp, mbox->in, opcode, qpn,
417-
opt_param_mask, qpc);
418-
break;
416+
MOD_QP_IN_SET_QPC(init2rtr_qp, mbox->in, opcode, qpn,
417+
opt_param_mask, qpc);
418+
break;
419419
case MLX5_CMD_OP_RTR2RTS_QP:
420420
if (MBOX_ALLOC(mbox, rtr2rts_qp))
421421
return -ENOMEM;
422-
MOD_QP_IN_SET_QPC(rtr2rts_qp, mbox->in, opcode, qpn,
423-
opt_param_mask, qpc);
424-
break;
422+
MOD_QP_IN_SET_QPC(rtr2rts_qp, mbox->in, opcode, qpn,
423+
opt_param_mask, qpc);
424+
break;
425425
case MLX5_CMD_OP_RTS2RTS_QP:
426426
if (MBOX_ALLOC(mbox, rts2rts_qp))
427427
return -ENOMEM;

0 commit comments

Comments
 (0)