From: Fabio Estevam Date: Mon, 26 Oct 2015 15:03:42 +0000 (-0200) Subject: sparc: Use the generic bitops headers X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=d2f21ebf033821ebe7df4f047b29b90495ec1ff7;p=bsp%2Fu-boot.git sparc: Use the generic bitops headers The generic bitops headers are required when calling logarithimic functions, such as ilog2(). Signed-off-by: Fabio Estevam --- diff --git a/arch/sparc/include/asm/bitops.h b/arch/sparc/include/asm/bitops.h index fa39fa3fc6..c66f730c88 100644 --- a/arch/sparc/include/asm/bitops.h +++ b/arch/sparc/include/asm/bitops.h @@ -9,4 +9,9 @@ #ifndef _SPARC_BITOPS_H #define _SPARC_BITOPS_H +#include +#include +#include +#include + #endif /* _SPARC_BITOPS_H */