Re: [PATCH] powerpc/pci: fix 64 bit pci size issue

2013-04-03 Thread Kumar Gala
On Mar 29, 2013, at 8:06 AM, Roy Zang wrote: > The size might be 64 bit, so use ilog2() instead of __ilog2() or > __ilog2_u64(). > > ilog2() can select 32bit or 64bit funciton automatically. > > Signed-off-by: Roy Zang > --- > arch/powerpc/sysdev/fsl_pci.c | 10 +- > 1 file changed, 5

[PATCH] powerpc/pci: fix 64 bit pci size issue

2013-03-28 Thread Roy Zang
The size might be 64 bit, so use ilog2() instead of __ilog2() or __ilog2_u64(). ilog2() can select 32bit or 64bit funciton automatically. Signed-off-by: Roy Zang --- arch/powerpc/sysdev/fsl_pci.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/powerpc/sysde