diff options
| author | Fabio Estevam <[email protected]> | 2015-11-05 12:43:24 -0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2015-11-05 10:51:59 -0500 |
| commit | 56adb7b30862f1abc2111132376fdb93da6a7563 (patch) | |
| tree | b936852f8b03c77dfc85a795014b010e146b2fa8 | |
| parent | 77c8554e4d7db8d04f03ee92d186bd87f74e3773 (diff) | |
ARM: Use the generic bitops headers
The generic bitops headers are required when calling logarithmic
functions, such as ilog2().
Signed-off-by: Fabio Estevam <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Reviewed-by: Heiko Schocher <[email protected]>
Reviewed-by: Jagan Teki <[email protected]>
| -rw-r--r-- | arch/arm/include/asm/bitops.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/include/asm/bitops.h b/arch/arm/include/asm/bitops.h index 9b78043db71..d479a382918 100644 --- a/arch/arm/include/asm/bitops.h +++ b/arch/arm/include/asm/bitops.h @@ -190,4 +190,9 @@ found_middle: #endif /* __KERNEL__ */ +#include <asm-generic/bitops/__fls.h> +#include <asm-generic/bitops/__ffs.h> +#include <asm-generic/bitops/fls.h> +#include <asm-generic/bitops/fls64.h> + #endif /* _ARM_BITOPS_H */ |
