powerpc: make __ffs return unsigned long
authorAnton Blanchard <anton@samba.org>
Wed, 17 Sep 2014 12:15:37 +0000 (22:15 +1000)
committerMichael Ellerman <mpe@ellerman.id.au>
Sun, 9 Nov 2014 22:59:27 +0000 (09:59 +1100)
commit6e4c632cdff7bf0238a2543dfe98bd1ad40313c2
treeb394ab195c02c0bc76f22c5223a36fb55d3f8797
parent21098b9e07476deb3f40acd7e51cffbffb4ef865
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>
arch/powerpc/include/asm/bitops.h
arch/powerpc/sysdev/fsl_pci.c