diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2015-11-05 12:43:29 -0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-11-05 10:52:11 -0500 |
commit | e6e7b7c0abaa8f42d20e22b04bf8df69e76c8909 (patch) | |
tree | e968b6e70a418681a561aa3f36428b291da56936 /arch/microblaze/include/asm | |
parent | f86411b18d69b03ca90c3864b8bffbff350f54e9 (diff) | |
download | u-boot-imx-e6e7b7c0abaa8f42d20e22b04bf8df69e76c8909.zip u-boot-imx-e6e7b7c0abaa8f42d20e22b04bf8df69e76c8909.tar.gz u-boot-imx-e6e7b7c0abaa8f42d20e22b04bf8df69e76c8909.tar.bz2 |
microblaze: 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/microblaze/include/asm')
-rw-r--r-- | arch/microblaze/include/asm/bitops.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/microblaze/include/asm/bitops.h b/arch/microblaze/include/asm/bitops.h index 0ac78d7..d24f2cf 100644 --- a/arch/microblaze/include/asm/bitops.h +++ b/arch/microblaze/include/asm/bitops.h @@ -7,6 +7,10 @@ #include <asm/byteorder.h> /* swab32 */ #include <asm/system.h> /* save_flags */ +#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__ /* |