Commit 02d6e633 authored by Paul Gortmaker's avatar Paul Gortmaker

arm/mach-keystone: remove legacy __cpuinit sections that crept in

We removed __cpuinit support (leaving no-op stubs) quite some time
ago.  However two crept back in as of commit 5eb3da72
("ARM: keystone: Switch over to coherent memory address space")

Since we want to clobber the stubs too, get these removed now.

Cc: Santosh Shilimkar <ssantosh@kernel.org>
Acked-by: default avatarSantosh Shilimkar <santosh.shilimkar@oracle.com>
Cc: linux-arm-kernel@lists.infradead.org
Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
parent 0f57d867
...@@ -40,14 +40,14 @@ static int keystone_smp_boot_secondary(unsigned int cpu, ...@@ -40,14 +40,14 @@ static int keystone_smp_boot_secondary(unsigned int cpu,
} }
#ifdef CONFIG_ARM_LPAE #ifdef CONFIG_ARM_LPAE
static void __cpuinit keystone_smp_secondary_initmem(unsigned int cpu) static void keystone_smp_secondary_initmem(unsigned int cpu)
{ {
pgd_t *pgd0 = pgd_offset_k(0); pgd_t *pgd0 = pgd_offset_k(0);
cpu_set_ttbr(1, __pa(pgd0) + TTBR1_OFFSET); cpu_set_ttbr(1, __pa(pgd0) + TTBR1_OFFSET);
local_flush_tlb_all(); local_flush_tlb_all();
} }
#else #else
static inline void __cpuinit keystone_smp_secondary_initmem(unsigned int cpu) static inline void keystone_smp_secondary_initmem(unsigned int cpu)
{} {}
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment