From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabio Estevam Date: Sat, 24 Oct 2015 13:26:49 -0200 Subject: [U-Boot] [PATCH v2 07/12] m68k: bitops: Use the generic bitops headers In-Reply-To: <1445700414-28600-1-git-send-email-festevam@gmail.com> References: <1445700414-28600-1-git-send-email-festevam@gmail.com> Message-ID: <1445700414-28600-7-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 --- Changes since v1: - None arch/m68k/include/asm/bitops.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/m68k/include/asm/bitops.h b/arch/m68k/include/asm/bitops.h index f9c434b..69ea26a 100644 --- a/arch/m68k/include/asm/bitops.h +++ b/arch/m68k/include/asm/bitops.h @@ -6,6 +6,10 @@ #define _M68K_BITOPS_H #include +#include +#include +#include +#include extern void set_bit(int nr, volatile void *addr); extern void clear_bit(int nr, volatile void *addr); -- 1.9.1