[POWERPC] Fix is_power_of_4(x) compile error
authorKumar Gala <galak@kernel.crashing.org>
Fri, 9 Feb 2007 15:30:05 +0000 (09:30 -0600)
committerKumar Gala <galak@kernel.crashing.org>
Fri, 9 Feb 2007 15:30:05 +0000 (09:30 -0600)
When building an 85xx kernel we get:

  CC      arch/powerpc/mm/pgtable_32.o
arch/powerpc/mm/pgtable_32.c: In function 'io_block_mapping':
arch/powerpc/mm/pgtable_32.c:330: error: expected identifier before '(' token
arch/powerpc/mm/pgtable_32.c:330: error: expected statement before ')' token

The is_power_of_2(x) fixup patch left an extra ')' on the is_power_of_4 macro.
There is a similiar issue on the arch/ppc side.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
arch/powerpc/mm/pgtable_32.c
arch/ppc/mm/pgtable.c

index bd02272bcb0fee3dcdcfcc507c725b7d23bd8404..c284bdac9947088e57fb66bc120639422eaf8900 100644 (file)
@@ -295,7 +295,7 @@ void __init mapin_ram(void)
 }
 
 /* is x a power of 4? */
-#define is_power_of_4(x)       is_power_of_2(x) && (ffs(x) & 1))
+#define is_power_of_4(x)       is_power_of_2(x) && (ffs(x) & 1)
 
 /*
  * Set up a mapping for a block of I/O.
index 82b06a1ef95d6e532415bfb238d43311e5778e28..c023b7298809b282639168eb2125f4e9d3218de0 100644 (file)
@@ -314,7 +314,7 @@ void __init mapin_ram(void)
 }
 
 /* is x a power of 4? */
-#define is_power_of_4(x)       is_power_of_2(x) && (ffs(x) & 1))
+#define is_power_of_4(x)       is_power_of_2(x) && (ffs(x) & 1)
 
 /*
  * Set up a mapping for a block of I/O.