Skip to content

Commit

Permalink
bitops: remove temporary for_each_bit()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Andrew Morton authored and Linus Torvalds committed Apr 7, 2010
1 parent 0fdf867 commit b01d094
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions include/linux/bitops.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b01d094

Please sign in to comment.