From: Rusty Russell Date: Wed, 31 Dec 2008 23:42:16 +0000 (+1030) Subject: avr32: define __fls X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=96b8d4c19d797200b973caab57ca842531184c13;p=GitHub%2Fexynos8895%2Fandroid_kernel_samsung_universal8895.git avr32: define __fls Like fls, but can't be handed 0 and returns the bit number. (I broke this arch in linux-next by using __fls in generic code). Signed-off-by: Rusty Russell --- diff --git a/arch/avr32/include/asm/bitops.h b/arch/avr32/include/asm/bitops.h index 1a50b69b1a19..f7dd5f71edf7 100644 --- a/arch/avr32/include/asm/bitops.h +++ b/arch/avr32/include/asm/bitops.h @@ -263,6 +263,11 @@ static inline int fls(unsigned long word) return 32 - result; } +static inline int __fls(unsigned long word) +{ + return fls(word) - 1; +} + unsigned long find_first_zero_bit(const unsigned long *addr, unsigned long size); unsigned long find_next_zero_bit(const unsigned long *addr,