diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-10-12 02:46:12 +0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-10-12 02:46:12 +0400 |
commit | f4fae8267c152d6c319a7bfaf92ed1c2c9a2c4e8 (patch) | |
tree | 5c43b9e75589b86f52af11dd5c41829dbb75b6ae | |
parent | db813fe5a77d03b29e872da47463d2efbddc3fc2 (diff) | |
download | linux-f4fae8267c152d6c319a7bfaf92ed1c2c9a2c4e8.tar.xz |
[MIPS] Optimize __alloc_zeroed_user_highpage implementation.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | include/asm-mips/page.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-mips/page.h b/include/asm-mips/page.h index c90fe560a0d9..e3301e54d559 100644 --- a/include/asm-mips/page.h +++ b/include/asm-mips/page.h @@ -142,7 +142,7 @@ typedef struct { unsigned long pgprot; } pgprot_t; /* * __pa()/__va() should be used only during mem init. */ -#ifdef KBUILD_64BIT_SYM32 +#ifdef CONFIG_64BIT #define __pa(x) \ ({ \ unsigned long __x = (unsigned long)(x); \ |