From: Ralf Baechle Date: Tue, 11 Sep 2007 07:50:40 +0000 (+0100) Subject: [MIPS] Fix CONFIG_BUILD_ELF64 kernels with symbols in CKSEG0. X-Git-Tag: v3.12-rc1~26804^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d809ba3f98b8aa8f9ba0dcdf6349958a0b77b7b;p=kernel%2Fkernel-generic.git [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 --- diff --git a/include/asm-mips/page.h b/include/asm-mips/page.h index b92dd8c..e3301e5 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); \