From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabio Estevam Date: Wed, 4 Nov 2015 15:13:56 -0200 Subject: [U-Boot] [PATCH 3/4] avr32: Use the generic bitops headers In-Reply-To: <1446657237-27091-1-git-send-email-festevam@gmail.com> References: <1446657237-27091-1-git-send-email-festevam@gmail.com> Message-ID: <1446657237-27091-3-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/avr32/include/asm/bitops.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/arch/avr32/include/asm/bitops.h b/arch/avr32/include/asm/bitops.h index 0ec6784..0d425c2 100644 --- a/arch/avr32/include/asm/bitops.h +++ b/arch/avr32/include/asm/bitops.h @@ -6,4 +6,9 @@ #ifndef __ASM_AVR32_BITOPS_H #define __ASM_AVR32_BITOPS_H +#include +#include +#include +#include + #endif /* __ASM_AVR32_BITOPS_H */ -- 1.9.1