Commit 44a469b6 authored by Luis Chamberlain's avatar Luis Chamberlain Committed by Jens Axboe

block/ataflop: use the blk_cleanup_disk() helper

Use the helper to replace two lines with one.
Signed-off-by: default avatarLuis Chamberlain <mcgrof@kernel.org>
Link: https://lore.kernel.org/r/20210927220302.1073499-12-mcgrof@kernel.orgSigned-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 625a28a7
...@@ -2077,8 +2077,7 @@ static int __init atari_floppy_init (void) ...@@ -2077,8 +2077,7 @@ static int __init atari_floppy_init (void)
err: err:
while (--i >= 0) { while (--i >= 0) {
blk_cleanup_queue(unit[i].disk[0]->queue); blk_cleanup_disk(unit[i].disk[0]);
put_disk(unit[i].disk[0]);
blk_mq_free_tag_set(&unit[i].tag_set); blk_mq_free_tag_set(&unit[i].tag_set);
} }
...@@ -2136,8 +2135,7 @@ static void __exit atari_floppy_exit(void) ...@@ -2136,8 +2135,7 @@ static void __exit atari_floppy_exit(void)
if (!unit[i].disk[type]) if (!unit[i].disk[type])
continue; continue;
del_gendisk(unit[i].disk[type]); del_gendisk(unit[i].disk[type]);
blk_cleanup_queue(unit[i].disk[type]->queue); blk_cleanup_disk(unit[i].disk[type]);
put_disk(unit[i].disk[type]);
} }
blk_mq_free_tag_set(&unit[i].tag_set); blk_mq_free_tag_set(&unit[i].tag_set);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment