aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/arch/powerpc/include/asm/bitops.h
diff options
context:
space:
mode:
authorAnton Blanchard <anton@samba.org>2014-09-17 22:15:37 +1000
committerMichael Ellerman <mpe@ellerman.id.au>2014-11-10 09:59:27 +1100
commit6e4c632cdff7bf0238a2543dfe98bd1ad40313c2 (patch)
treeb394ab195c02c0bc76f22c5223a36fb55d3f8797 /arch/powerpc/include/asm/bitops.h
parentpowerpc: Move sparse_init() into initmem_init (diff)
downloadwireguard-linux-6e4c632cdff7bf0238a2543dfe98bd1ad40313c2.tar.xz
wireguard-linux-6e4c632cdff7bf0238a2543dfe98bd1ad40313c2.zip
powerpc: make __ffs return unsigned long
I'm seeing a build warning in mm/nobootmem.c after removing bootmem: mm/nobootmem.c: In function '__free_pages_memory': include/linux/kernel.h:713:17: warning: comparison of distinct pointer types lacks a cast [enabled by default] (void) (&_min1 == &_min2); \ ^ mm/nobootmem.c:90:11: note: in expansion of macro 'min' order = min(MAX_ORDER - 1UL, __ffs(start)); ^ The rest of the worlds seems to define __ffs as returning unsigned long, so lets do that. Signed-off-by: Anton Blanchard <anton@samba.org> Tested-by: Emil Medve <Emilian.Medve@Freescale.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/include/asm/bitops.h')
-rw-r--r--arch/powerpc/include/asm/bitops.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/bitops.h b/arch/powerpc/include/asm/bitops.h
index bd3bd573d0ae..c633f058ba43 100644
--- a/arch/powerpc/include/asm/bitops.h
+++ b/arch/powerpc/include/asm/bitops.h
@@ -213,7 +213,7 @@ static __inline__ unsigned long ffz(unsigned long x)
return __ilog2(x & -x);
}
-static __inline__ int __ffs(unsigned long x)
+static __inline__ unsigned long __ffs(unsigned long x)
{
return __ilog2(x & -x);
}