From 3c2cdc4b20f4656b394b8eff2944d40974203a5d Mon Sep 17 00:00:00 2001 From: Andrew Morton Date: Fri, 23 Jan 2015 10:11:45 +1100 Subject: [PATCH] lib-bitmap-update-bitmap_onto-to-unsigned-checkpatch-fixes WARNING: please, no space before tabs #38: FILE: lib/bitmap.c:1011: +^Iunsigned int n, m; ^I/* same meaning as in above comment */$ total: 0 errors, 1 warnings, 19 lines checked ./patches/lib-bitmap-update-bitmap_onto-to-unsigned.patch has style problems, please review. If any of these errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Rasmus Villemoes Signed-off-by: Andrew Morton --- lib/bitmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bitmap.c b/lib/bitmap.c index d8467980875db0..ee598a496895fe 100644 --- a/lib/bitmap.c +++ b/lib/bitmap.c @@ -1008,7 +1008,7 @@ EXPORT_SYMBOL(bitmap_bitremap); void bitmap_onto(unsigned long *dst, const unsigned long *orig, const unsigned long *relmap, unsigned int bits) { - unsigned int n, m; /* same meaning as in above comment */ + unsigned int n, m; /* same meaning as in above comment */ if (dst == orig) /* following doesn't handle inplace mappings */ return;