commit | 2f9305eb31097fdd3dc86daca65d8097d1fcf2ff | [log] [tgz] |
---|---|---|
author | Rasmus Villemoes <[email protected]> | Wed Aug 06 16:09:59 2014 -0700 |
committer | Linus Torvalds <[email protected]> | Wed Aug 06 18:01:26 2014 -0700 |
tree | 6b6ecf6c0a60a531f6f2f9bdec7ef400defddb6f | |
parent | 65b4ee62c9cd10640f0054f47fd84c7920e8c118 [diff] |
lib: bitmap: make nbits parameter of bitmap_{and,or,xor,andnot} unsigned This change is only for consistency with the changes to the other bitmap_* functions; it doesn't change the size of the generated code: inside BITS_TO_LONGS there is a sizeof(long), which causes bits to be interpreted as unsigned anyway. Signed-off-by: Rasmus Villemoes <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>