Skip to content

Commit

Permalink
lib-bitmap-update-bitmap_onto-to-unsigned-checkpatch-fixes
Browse files Browse the repository at this point in the history
WARNING: please, no space before tabs
torvalds#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 <linux@rasmusvillemoes.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
  • Loading branch information
akpm00 authored and sfrothwell committed Jan 22, 2015
1 parent c540f9e commit 3c2cdc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bitmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3c2cdc4

Please sign in to comment.