[PATCH] block:bio.c Cleanup styleguide errors reported by checkpatch.pl

From: Jim Richardson
Date: Fri Jul 18 2014 - 01:54:34 EST


3 styleguide errors cleaned up from checkpatch.pl report for block/bio.c

Signed-off-by: Jim Richardson <weaselkeeper@xxxxxxxxx>
---
block/bio.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/block/bio.c b/block/bio.c
index 0ec61c9..41707f0 100644
--- a/block/bio.c
+++ b/block/bio.c
@@ -1337,7 +1337,7 @@ static struct bio *__bio_map_user_iov(struct request_queue *q,

if (len <= 0)
break;
-
+
if (bytes > len)
bytes = len;

@@ -1374,7 +1374,7 @@ static struct bio *__bio_map_user_iov(struct request_queue *q,

out_unmap:
for (i = 0; i < nr_pages; i++) {
- if(!pages[i])
+ if (!pages[i])
break;
page_cache_release(pages[i]);
}
@@ -2025,7 +2025,7 @@ static void __init biovec_init_slabs(void)

size = bvs->nr_vecs * sizeof(struct bio_vec);
bvs->slab = kmem_cache_create(bvs->name, size, 0,
- SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
+ SLAB_HWCACHE_ALIGN|SLAB_PANIC, NULL);
}
}

--
2.0.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/