diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2015-11-05 12:43:31 -0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-11-05 10:52:16 -0500 |
commit | a428c9e9ceb0b14251445506fae5e303666364af (patch) | |
tree | 0563dd79f3e36ed7cf39c9afa3bf5b255d510e07 /arch/sparc/include/asm | |
parent | d308c9efadbe4e2b37bbed134f5782322de87686 (diff) | |
download | u-boot-imx-a428c9e9ceb0b14251445506fae5e303666364af.zip u-boot-imx-a428c9e9ceb0b14251445506fae5e303666364af.tar.gz u-boot-imx-a428c9e9ceb0b14251445506fae5e303666364af.tar.bz2 |
sparc: 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>
Reviewed-by: Jagan Teki <jteki@openedev.com>
Diffstat (limited to 'arch/sparc/include/asm')
-rw-r--r-- | arch/sparc/include/asm/bitops.h | 5 |
1 files changed, 5 insertions, 0 deletions
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 */ |