Skip to content

Commit 389e72c

Browse files
Shen Lichuankeithbusch
authored andcommitted
nvme: Convert comma to semicolon
To ensure code clarity and prevent potential errors, it's advisable to employ the ';' as a statement separator, except when ',' are intentionally used for specific purposes. Signed-off-by: Shen Lichuan <[email protected]> Reviewed-by: Sagi Grimberg <[email protected]> Signed-off-by: Keith Busch <[email protected]>
1 parent 68f31e8 commit 389e72c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/nvme/host/core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4605,7 +4605,7 @@ int nvme_alloc_io_tag_set(struct nvme_ctrl *ctrl, struct blk_mq_tag_set *set,
46054605
set->flags = BLK_MQ_F_SHOULD_MERGE;
46064606
if (ctrl->ops->flags & NVME_F_BLOCKING)
46074607
set->flags |= BLK_MQ_F_BLOCKING;
4608-
set->cmd_size = cmd_size,
4608+
set->cmd_size = cmd_size;
46094609
set->driver_data = ctrl;
46104610
set->nr_hw_queues = ctrl->queue_count - 1;
46114611
set->timeout = NVME_IO_TIMEOUT;

0 commit comments

Comments
 (0)