mlx4_core: Fix some indenting in mlx4_ib_add()
The code was indented too far and also kernel style says we should have curly braces. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Roland Dreier <roland@purestorage.com>
This commit is contained in:
parent
2c34e68f42
commit
3839d8ac1b
|
@ -2056,9 +2056,10 @@ static void *mlx4_ib_add(struct mlx4_dev *dev)
|
||||||
err = mlx4_counter_alloc(ibdev->dev, &ibdev->counters[i]);
|
err = mlx4_counter_alloc(ibdev->dev, &ibdev->counters[i]);
|
||||||
if (err)
|
if (err)
|
||||||
ibdev->counters[i] = -1;
|
ibdev->counters[i] = -1;
|
||||||
} else
|
} else {
|
||||||
ibdev->counters[i] = -1;
|
ibdev->counters[i] = -1;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_IB)
|
mlx4_foreach_port(i, dev, MLX4_PORT_TYPE_IB)
|
||||||
ib_num_ports++;
|
ib_num_ports++;
|
||||||
|
|
Loading…
Reference in New Issue