aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-mips
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2007-09-11 08:50:40 +0100
committerRalf Baechle <ralf@linux-mips.org>2007-09-27 23:19:16 +0100
commit7d809ba3f98b8aa8f9ba0dcdf6349958a0b77b7b (patch)
tree9e266ca9eb00fa349c47d52d4ca9fe3902b8feee /include/asm-mips
parent[MIPS] IP32: Fix initialization of UART base addresses. (diff)
downloadlinux-dev-7d809ba3f98b8aa8f9ba0dcdf6349958a0b77b7b.tar.xz
linux-dev-7d809ba3f98b8aa8f9ba0dcdf6349958a0b77b7b.zip
[MIPS] Fix CONFIG_BUILD_ELF64 kernels with symbols in CKSEG0.
The __pa() for those did assume that all symbols have XKPHYS values and the math fails for any other address range. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips')
-rw-r--r--include/asm-mips/page.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-mips/page.h b/include/asm-mips/page.h
index b92dd8c760da..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.
*/
-#if defined(CONFIG_64BIT) && !defined(CONFIG_BUILD_ELF64)
+#ifdef CONFIG_64BIT
#define __pa(x) \
({ \
unsigned long __x = (unsigned long)(x); \