diff options
author | Kevin Hao <haokexin@gmail.com> | 2016-07-13 03:14:40 +0200 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2016-07-19 12:17:07 +0200 |
commit | 27d1149667352772240655b65372a4294f992ea7 (patch) | |
tree | 8bf60406e6276da9013902bd4f09b6db3b6c2b89 /arch/powerpc/mm | |
parent | powerpc: Merge the RELOCATABLE config entries for ppc32 and ppc64 (diff) | |
download | linux-27d1149667352772240655b65372a4294f992ea7.tar.xz linux-27d1149667352772240655b65372a4294f992ea7.zip |
powerpc/32: Remove RELOCATABLE_PPC32
It is seldom used in the kernel code and can be easily replaced by
either RELOCATABLE or PPC32. So there is no reason to keep a separate
kernel option for this.
Signed-off-by: Kevin Hao <haokexin@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/mm')
-rw-r--r-- | arch/powerpc/mm/init_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/mm/init_32.c b/arch/powerpc/mm/init_32.c index e2d7ba124618..448685fbf27c 100644 --- a/arch/powerpc/mm/init_32.c +++ b/arch/powerpc/mm/init_32.c @@ -64,7 +64,7 @@ EXPORT_SYMBOL(memstart_addr); phys_addr_t kernstart_addr; EXPORT_SYMBOL(kernstart_addr); -#ifdef CONFIG_RELOCATABLE_PPC32 +#ifdef CONFIG_RELOCATABLE /* Used in __va()/__pa() */ long long virt_phys_offset; EXPORT_SYMBOL(virt_phys_offset); |