From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabio Estevam Date: Wed, 4 Nov 2015 15:13:54 -0200 Subject: [U-Boot] [PATCH 1/4] mips: Use the generic bitops headers Message-ID: <1446657237-27091-1-git-send-email-festevam@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de From: Fabio Estevam The generic bitops headers are required when calling logarithimic functions, such as ilog2(). Signed-off-by: Fabio Estevam --- Applies against u-boot-spi next arch/mips/include/asm/bitops.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/arch/mips/include/asm/bitops.h b/arch/mips/include/asm/bitops.h index b5c2a63..c31ff6e 100644 --- a/arch/mips/include/asm/bitops.h +++ b/arch/mips/include/asm/bitops.h @@ -17,6 +17,11 @@ #include #include +#include +#include +#include +#include + /* * clear_bit() doesn't provide any barrier for the compiler. */ -- 1.9.1