diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2015-11-05 12:43:36 -0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-11-05 10:52:29 -0500 |
commit | 5d8e66079d90bf43e68742714a6c720189c4aec2 (patch) | |
tree | 5e1cdb29c08ad1fb34a7d1dd802b4029874668e5 /arch/arc/include | |
parent | b810aa1dd1b2c7facf47ca607cd780ec7976fd16 (diff) | |
download | u-boot-imx-5d8e66079d90bf43e68742714a6c720189c4aec2.zip u-boot-imx-5d8e66079d90bf43e68742714a6c720189c4aec2.tar.gz u-boot-imx-5d8e66079d90bf43e68742714a6c720189c4aec2.tar.bz2 |
arc: Use the generic bitops headers
The generic bitops headers are required when calling logarithmic
functions, such as ilog2().
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'arch/arc/include')
-rw-r--r-- | arch/arc/include/asm/bitops.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arc/include/asm/bitops.h b/arch/arc/include/asm/bitops.h index 85721aa..370cb46 100644 --- a/arch/arc/include/asm/bitops.h +++ b/arch/arc/include/asm/bitops.h @@ -16,4 +16,9 @@ #define hweight16(x) generic_hweight16(x) #define hweight8(x) generic_hweight8(x) +#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 /* __ASM_ARC_BITOPS_H */ |