From: Fabio Estevam Date: Sat, 24 Oct 2015 11:48:32 +0000 (-0200) Subject: ARM: bitops: Use the generic bitops headers X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=6ab6bf2fd7fbeb222a6cd676eced08f79352b962;p=bsp%2Fu-boot.git ARM: bitops: Use the generic bitops headers The generic bitops headers are required when calling logarithimic functions, such as ilog2(). Signed-off-by: Fabio Estevam Reviewed-by: Tom Rini --- diff --git a/arch/arm/include/asm/bitops.h b/arch/arm/include/asm/bitops.h index 9b78043db7..d479a38291 100644 --- a/arch/arm/include/asm/bitops.h +++ b/arch/arm/include/asm/bitops.h @@ -190,4 +190,9 @@ found_middle: #endif /* __KERNEL__ */ +#include +#include +#include +#include + #endif /* _ARM_BITOPS_H */