diff options
Diffstat (limited to 'arch/powerpc/mm/pgtable_32.c')
-rw-r--r-- | arch/powerpc/mm/pgtable_32.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/powerpc/mm/pgtable_32.c b/arch/powerpc/mm/pgtable_32.c index 1891dbeeb8e9..bd02272bcb0f 100644 --- a/arch/powerpc/mm/pgtable_32.c +++ b/arch/powerpc/mm/pgtable_32.c | |||
@@ -294,11 +294,8 @@ void __init mapin_ram(void) | |||
294 | } | 294 | } |
295 | } | 295 | } |
296 | 296 | ||
297 | /* is x a power of 2? */ | ||
298 | #define is_power_of_2(x) ((x) != 0 && (((x) & ((x) - 1)) == 0)) | ||
299 | |||
300 | /* is x a power of 4? */ | 297 | /* is x a power of 4? */ |
301 | #define is_power_of_4(x) ((x) != 0 && (((x) & (x-1)) == 0) && (ffs(x) & 1)) | 298 | #define is_power_of_4(x) is_power_of_2(x) && (ffs(x) & 1)) |
302 | 299 | ||
303 | /* | 300 | /* |
304 | * Set up a mapping for a block of I/O. | 301 | * Set up a mapping for a block of I/O. |