Skip to content

Commit

Permalink
block/ataflop: use the blk_cleanup_disk() helper
Browse files Browse the repository at this point in the history
Use the helper to replace two lines with one.

Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
Link: https://lore.kernel.org/r/20210927220302.1073499-12-mcgrof@kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
  • Loading branch information
mcgrof authored and axboe committed Oct 18, 2021
1 parent 625a28a commit 44a469b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions drivers/block/ataflop.c
Original file line number Diff line number Diff line change
Expand Up @@ -2077,8 +2077,7 @@ static int __init atari_floppy_init (void)

err:
while (--i >= 0) {
blk_cleanup_queue(unit[i].disk[0]->queue);
put_disk(unit[i].disk[0]);
blk_cleanup_disk(unit[i].disk[0]);
blk_mq_free_tag_set(&unit[i].tag_set);
}

Expand Down Expand Up @@ -2136,8 +2135,7 @@ static void __exit atari_floppy_exit(void)
if (!unit[i].disk[type])
continue;
del_gendisk(unit[i].disk[type]);
blk_cleanup_queue(unit[i].disk[type]->queue);
put_disk(unit[i].disk[type]);
blk_cleanup_disk(unit[i].disk[type]);
}
blk_mq_free_tag_set(&unit[i].tag_set);
}
Expand Down

0 comments on commit 44a469b

Please sign in to comment.