diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2010-04-06 14:34:41 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-04-07 08:38:01 -0700 |
commit | b01d0942c2b7a3026d2b7d38b5773d3d00420e06 (patch) | |
tree | c4be20ad3896269075ca01c98ef7fd0962af4a50 /include | |
parent | 0fdf86754f70e813845af4abaa805165ce57a0bb (diff) | |
download | linux-3.10-b01d0942c2b7a3026d2b7d38b5773d3d00420e06.tar.gz linux-3.10-b01d0942c2b7a3026d2b7d38b5773d3d00420e06.tar.bz2 linux-3.10-b01d0942c2b7a3026d2b7d38b5773d3d00420e06.zip |
bitops: remove temporary for_each_bit()
Migration has been completed so remove this now. There's one straggler in
linux-next's drivers/mtd/sm_ftl.c. A patch has been sent.
Cc: Akinobu Mita <akinobu.mita@gmail.com>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/bitops.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/bitops.h b/include/linux/bitops.h index b7938987923..b796eab5ca7 100644 --- a/include/linux/bitops.h +++ b/include/linux/bitops.h @@ -21,9 +21,6 @@ (bit) < (size); \ (bit) = find_next_bit((addr), (size), (bit) + 1)) -/* Temporary */ -#define for_each_bit(bit, addr, size) for_each_set_bit(bit, addr, size) - static __inline__ int get_bitmask_order(unsigned int count) { int order; |