[Linux-kernel-mentees] [PATCH] lib: genalloc: fix warning generated by checkpatch

Hassan Shahbazi h.shahbazi.git at gmail.com
Thu Feb 18 21:27:39 UTC 2021


Add missing blank line after declarations.

Signed-off-by: Hassan Shahbazi <h.shahbazi.git at gmail.com>
---
 lib/genalloc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/genalloc.c b/lib/genalloc.c
index dab97bb69df6..3e901fd93b00 100644
--- a/lib/genalloc.c
+++ b/lib/genalloc.c
@@ -757,6 +757,7 @@ unsigned long gen_pool_best_fit(unsigned long *map, unsigned long size,
 
 	while (index < size) {
 		unsigned long next_bit = find_next_bit(map, size, index + nr);
+
 		if ((next_bit - index) < len) {
 			len = next_bit - index;
 			start_bit = index;
-- 
2.26.2



More information about the Linux-kernel-mentees mailing list