Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fe11cb6b authored by Ilpo Järvinen's avatar Ilpo Järvinen Committed by Roland Dreier
Browse files

IB/mlx4: Incorrect semicolon after if statement



A stray semicolon makes us inadvertently ignore the value of err.

Signed-off-by: default avatarIlpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: default avatarRoland Dreier <rolandd@cisco.com>
parent 947b2a80
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -109,7 +109,7 @@ int mlx4_MAD_IFC(struct mlx4_ib_dev *dev, int ignore_mkey, int ignore_bkey,
			   in_modifier, op_modifier,
			   MLX4_CMD_MAD_IFC, MLX4_CMD_TIME_CLASS_C);

	if (!err);
	if (!err)
		memcpy(response_mad, outmailbox->buf, 256);

	mlx4_free_cmd_mailbox(dev->dev, inmailbox);