diff options
Diffstat (limited to 'lib/bitmap.c')
-rw-r--r-- | lib/bitmap.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/bitmap.c b/lib/bitmap.c index 3f3b68199d74..2f4412e4d071 100644 --- a/lib/bitmap.c +++ b/lib/bitmap.c | |||
@@ -271,8 +271,6 @@ int __bitmap_weight(const unsigned long *bitmap, int bits) | |||
271 | } | 271 | } |
272 | EXPORT_SYMBOL(__bitmap_weight); | 272 | EXPORT_SYMBOL(__bitmap_weight); |
273 | 273 | ||
274 | #define BITMAP_FIRST_WORD_MASK(start) (~0UL << ((start) % BITS_PER_LONG)) | ||
275 | |||
276 | void bitmap_set(unsigned long *map, int start, int nr) | 274 | void bitmap_set(unsigned long *map, int start, int nr) |
277 | { | 275 | { |
278 | unsigned long *p = map + BIT_WORD(start); | 276 | unsigned long *p = map + BIT_WORD(start); |
@@ -756,7 +754,7 @@ static int bitmap_pos_to_ord(const unsigned long *buf, int pos, int bits) | |||
756 | * | 754 | * |
757 | * The bit positions 0 through @bits are valid positions in @buf. | 755 | * The bit positions 0 through @bits are valid positions in @buf. |
758 | */ | 756 | */ |
759 | static int bitmap_ord_to_pos(const unsigned long *buf, int ord, int bits) | 757 | int bitmap_ord_to_pos(const unsigned long *buf, int ord, int bits) |
760 | { | 758 | { |
761 | int pos = 0; | 759 | int pos = 0; |
762 | 760 | ||