diff options
author | Franck Bui-Huu <vagabon.xyz@gmail.com> | 2007-02-15 08:21:36 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-10-11 18:45:59 -0400 |
commit | 054c51b4368648406f487f54b7ed6ba75bbb3f8b (patch) | |
tree | 89db2ea5e05fd95bff686d24383897332276e98b /include/asm-mips/pgtable-64.h | |
parent | adff90a9333004d5459823665e8bcf6cb9214f79 (diff) |
[MIPS] Rename CONFIG_BUILD_ELF64 into KBUILD_64BIT_SYM32
This patch renames it for 3 reasons:
- "CONFIG" pattern is used by Kconfig. Now this macro is
no more defined by Kconfig but by Kbuild itself make this
clear by translating "CONFIG" into "KBUILD".
- "ELF32" word is improper because it is irrelevant to ELF
format and it makes confusion with CONFIG_BOOT_ELF32. So
translate it with SYM32.
- Add "64BIT" part to make clear that this macro implies a
64 bits kernel.
Signed-off-by: Franck Bui-Huu <fbuihuu@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/pgtable-64.h')
-rw-r--r-- | include/asm-mips/pgtable-64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-mips/pgtable-64.h b/include/asm-mips/pgtable-64.h index 49f5a1a2dfcd..a8aed9c6a159 100644 --- a/include/asm-mips/pgtable-64.h +++ b/include/asm-mips/pgtable-64.h | |||
@@ -104,7 +104,7 @@ | |||
104 | #define VMALLOC_START MAP_BASE | 104 | #define VMALLOC_START MAP_BASE |
105 | #define VMALLOC_END \ | 105 | #define VMALLOC_END \ |
106 | (VMALLOC_START + PTRS_PER_PGD * PTRS_PER_PMD * PTRS_PER_PTE * PAGE_SIZE) | 106 | (VMALLOC_START + PTRS_PER_PGD * PTRS_PER_PMD * PTRS_PER_PTE * PAGE_SIZE) |
107 | #if defined(CONFIG_MODULES) && !defined(CONFIG_BUILD_ELF64) && \ | 107 | #if defined(CONFIG_MODULES) && defined(KBUILD_64BIT_SYM32) && \ |
108 | VMALLOC_START != CKSSEG | 108 | VMALLOC_START != CKSSEG |
109 | /* Load modules into 32bit-compatible segment. */ | 109 | /* Load modules into 32bit-compatible segment. */ |
110 | #define MODULE_START CKSSEG | 110 | #define MODULE_START CKSSEG |