summaryrefslogtreecommitdiff
path: root/block/bsg-lib.c
diff options
context:
space:
mode:
authorXu Wang <vulab@iscas.ac.cn>2020-08-17 02:16:49 +0000
committerJens Axboe <axboe@kernel.dk>2020-08-16 20:07:12 -0700
commit03ef5941a04c68b5eb8254493d09b6e899a377a3 (patch)
tree952ecafaf1f271a1458ef6b2ffcdaddab5da2655 /block/bsg-lib.c
parent26bfeb26624071a47acb3a07097efe12044865f2 (diff)
bsg-lib: convert comma to semicolon
Replace a comma between expression statements by a semicolon. Signed-off-by: Xu Wang <vulab@iscas.ac.cn> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/bsg-lib.c')
-rw-r--r--block/bsg-lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/bsg-lib.c b/block/bsg-lib.c
index fb7b347f8010..d185396d88bb 100644
--- a/block/bsg-lib.c
+++ b/block/bsg-lib.c
@@ -378,7 +378,7 @@ struct request_queue *bsg_setup_queue(struct device *dev, const char *name,
bset->timeout_fn = timeout;
set = &bset->tag_set;
- set->ops = &bsg_mq_ops,
+ set->ops = &bsg_mq_ops;
set->nr_hw_queues = 1;
set->queue_depth = 128;
set->numa_node = NUMA_NO_NODE;