From 6ab6bf2fd7fbeb222a6cd676eced08f79352b962 Mon Sep 17 00:00:00 2001 From: Fabio Estevam Date: Sat, 24 Oct 2015 09:48:32 -0200 Subject: [PATCH] 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 --- arch/arm/include/asm/bitops.h | 5 +++++ 1 file changed, 5 insertions(+) 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 */ -- 2.40.1