]> code.ossystems Code Review - bsp/u-boot.git/commitdiff
sandbox: Use the generic bitops headers
authorFabio Estevam <fabio.estevam@freescale.com>
Sat, 24 Oct 2015 11:37:59 +0000 (09:37 -0200)
committerOtavio Salvador <otavio@ossystems.com.br>
Wed, 28 Oct 2015 13:02:27 +0000 (11:02 -0200)
The generic bitops headers are required when calling logarithimic
functions, such as ilog2().

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
arch/sandbox/include/asm/bitops.h

index f1a7aeee938f75e5e14dd1173f9453cae641a094..f27d5e98c56033f1e8701d61f8a0ac1f1ac18646 100644 (file)
 
 #include <linux/compiler.h>
 #include <asm/system.h>
+#include <asm-generic/bitops/fls.h>
+#include <asm-generic/bitops/__fls.h>
+#include <asm-generic/bitops/fls64.h>
+#include <asm-generic/bitops/__ffs.h>
 
 #ifdef __KERNEL__