Skip to content

Commit 820cd30

Browse files
Dan Carpenterdledford
authored andcommitted
i40iw: fix some indenting in i40iw_sc_vsi_init()
The debug printk was indented more than it should have been and we can remove an unnecessary line break. Signed-off-by: Dan Carpenter <[email protected]> Acked-by: Shiraz Saleem <[email protected]> Reviewed-by: Yuval Shaia <[email protected]> Signed-off-by: Doug Ledford <[email protected]>
1 parent 19b752a commit 820cd30

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/infiniband/hw/i40iw/i40iw_ctrl.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4498,9 +4498,9 @@ void i40iw_sc_vsi_init(struct i40iw_sc_vsi *vsi, struct i40iw_vsi_init_info *inf
44984498
i40iw_fill_qos_list(info->params->qs_handle_list);
44994499

45004500
for (i = 0; i < I40IW_MAX_USER_PRIORITY; i++) {
4501-
vsi->qos[i].qs_handle =
4502-
info->params->qs_handle_list[i];
4503-
i40iw_debug(vsi->dev, I40IW_DEBUG_DCB, "qset[%d]: %d\n", i, vsi->qos[i].qs_handle);
4501+
vsi->qos[i].qs_handle = info->params->qs_handle_list[i];
4502+
i40iw_debug(vsi->dev, I40IW_DEBUG_DCB, "qset[%d]: %d\n", i,
4503+
vsi->qos[i].qs_handle);
45044504
spin_lock_init(&vsi->qos[i].lock);
45054505
INIT_LIST_HEAD(&vsi->qos[i].qplist);
45064506
}

0 commit comments

Comments
 (0)