bitops: Inline bitops_flsl

This is the only remaining user.

Signed-off-by: Richard Henderson <rth@twiddle.net>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
master
Richard Henderson 2013-02-13 17:47:41 -08:00 committed by Blue Swirl
parent 14e534265a
commit 4932398fac
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ unsigned long find_last_bit(const unsigned long *addr, unsigned long size)
tmp = addr[--words];
if (tmp) {
found:
return words * BITS_PER_LONG + bitops_flsl(tmp);
return words * BITS_PER_LONG + BITS_PER_LONG - 1 - clzl(tmp);
}
}