diff options
author | Christoph Hellwig <hch@lst.de> | 2018-05-31 19:11:38 +0200 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2018-06-01 07:38:17 -0600 |
commit | ddb7253254fee6922764043101f8b28b6a00595d (patch) | |
tree | 07463c68dc65a1dbc0de3398d9145320f31ec41a /block/blk-core.c | |
parent | a8a275c9c2fb6bc9b45ad3e4187469726e2af7d1 (diff) | |
download | linux-ddb7253254fee6922764043101f8b28b6a00595d.tar.bz2 |
block: remove the always unused name argument to elevator_init
Reported-by: Damien Le Moal <Damien.LeMoal@wdc.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Damien Le Moal <damien.lemoal@wdc.com>
Tested-by: Damien Le Moal <damien.lemoal@wdc.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-core.c')
-rw-r--r-- | block/blk-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-core.c b/block/blk-core.c index b00e7e6340ca..18b691c93b63 100644 --- a/block/blk-core.c +++ b/block/blk-core.c @@ -1179,7 +1179,7 @@ int blk_init_allocated_queue(struct request_queue *q) mutex_lock(&q->sysfs_lock); /* init elevator */ - if (elevator_init(q, NULL)) { + if (elevator_init(q)) { mutex_unlock(&q->sysfs_lock); goto out_exit_flush_rq; } |