aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChaitanya Kulkarni <chaitanya.kulkarni@wdc.com>2021-01-25 15:32:41 -0800
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>2021-02-21 23:37:52 +0100
commit37772f9136f442a1098d0ae1238def72f1216057 (patch)
treef087e40c11d464e628084e94c80a13b1a61657a8
parentn64: remove curly brackets (diff)
downloadlinux-dev-37772f9136f442a1098d0ae1238def72f1216057.tar.xz
linux-dev-37772f9136f442a1098d0ae1238def72f1216057.zip
n64: cosmetics changes
Make the variable declaration ascending order and initialize the variables at the time of declaration when possible. Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com> Reviewed-by: Lauri Kasanen <cand@gmx.com> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
-rw-r--r--drivers/block/n64cart.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/block/n64cart.c b/drivers/block/n64cart.c
index 7906b5b2f12e..3bfb010402e3 100644
--- a/drivers/block/n64cart.c
+++ b/drivers/block/n64cart.c
@@ -88,10 +88,8 @@ static bool n64cart_do_bvec(struct device *dev, struct bio_vec *bv, u32 pos)
static blk_qc_t n64cart_submit_bio(struct bio *bio)
{
struct bio_vec bvec;
- u32 pos;
struct bvec_iter iter;
-
- pos = bio->bi_iter.bi_sector << SECTOR_SHIFT;
+ u32 pos = bio->bi_iter.bi_sector << SECTOR_SHIFT;
bio_for_each_segment(bvec, bio, iter) {
if (!n64cart_do_bvec(dev, &bvec, pos))
@@ -119,8 +117,8 @@ static const struct block_device_operations n64cart_fops = {
static int __init n64cart_probe(struct platform_device *pdev)
{
int err;
- struct request_queue *queue;
struct gendisk *disk;
+ struct request_queue *queue;
if (!start || !size) {
pr_err("start or size not specified\n");