diff mbox

[U-Boot,v4,09/16] sparc: Use the generic bitops headers

Message ID 1445875918-14777-9-git-send-email-fabio.estevam@freescale.com
State Superseded
Delegated to: Jagannadha Sutradharudu Teki
Headers show

Commit Message

Fabio Estevam Oct. 26, 2015, 4:11 p.m. UTC
The generic bitops headers are required when calling logarithimic
functions, such as ilog2().

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
Changes since v3:
- Newly introduced in this version

 arch/sparc/include/asm/bitops.h | 5 +++++
 1 file changed, 5 insertions(+)

Comments

Jagan Teki Oct. 30, 2015, 6:20 a.m. UTC | #1
On 26 October 2015 at 21:41, Fabio Estevam <fabio.estevam@freescale.com> wrote:
> The generic bitops headers are required when calling logarithimic
> functions, such as ilog2().
>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---

Reviewed-by: Jagan Teki <jteki@openedev.com>

thanks!
diff mbox

Patch

diff --git a/arch/sparc/include/asm/bitops.h b/arch/sparc/include/asm/bitops.h
index fa39fa3..c66f730 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 <asm-generic/bitops/fls.h>
+#include <asm-generic/bitops/__fls.h>
+#include <asm-generic/bitops/fls64.h>
+#include <asm-generic/bitops/__ffs.h>
+
 #endif				/* _SPARC_BITOPS_H */