From: Rusty Russell Date: Sat, 3 Jan 2009 05:46:04 +0000 (+1030) Subject: h8300: define __fls X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9ddabc2a29163e4b243d10c5e06fc5584073d7ad;p=linux-beck.git h8300: define __fls Like fls, but can't be handed 0 and returns the bit number. Signed-off-by: Rusty Russell --- diff --git a/arch/h8300/include/asm/bitops.h b/arch/h8300/include/asm/bitops.h index cb18e3b0aa94..cb9ddf5fc54f 100644 --- a/arch/h8300/include/asm/bitops.h +++ b/arch/h8300/include/asm/bitops.h @@ -207,6 +207,7 @@ static __inline__ unsigned long __ffs(unsigned long word) #endif /* __KERNEL__ */ #include +#include #include #endif /* _H8300_BITOPS_H */