Commit 346bcc4d authored by Christophe Leroy's avatar Christophe Leroy Committed by Michael Ellerman

powerpc/8xx: mark init functions with __init

setup_initial_memory_limit() is only called during init.
mmu_patch_cmp_limit() is only called from 8xx_mmu.c
Signed-off-by: default avatarChristophe Leroy <christophe.leroy@c-s.fr>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 87be3e2d
...@@ -87,7 +87,7 @@ void __init MMU_init_hw(void) ...@@ -87,7 +87,7 @@ void __init MMU_init_hw(void)
#endif #endif
} }
static void mmu_mapin_immr(void) static void __init mmu_mapin_immr(void)
{ {
unsigned long p = PHYS_IMMR_BASE; unsigned long p = PHYS_IMMR_BASE;
unsigned long v = VIRT_IMMR_BASE; unsigned long v = VIRT_IMMR_BASE;
...@@ -107,7 +107,7 @@ extern unsigned int DTLBMiss_cmp, FixupDAR_cmp; ...@@ -107,7 +107,7 @@ extern unsigned int DTLBMiss_cmp, FixupDAR_cmp;
extern unsigned int ITLBMiss_cmp; extern unsigned int ITLBMiss_cmp;
#endif #endif
void mmu_patch_cmp_limit(unsigned int *addr, unsigned long mapped) static void __init mmu_patch_cmp_limit(unsigned int *addr, unsigned long mapped)
{ {
unsigned int instr = *addr; unsigned int instr = *addr;
...@@ -151,8 +151,8 @@ unsigned long __init mmu_mapin_ram(unsigned long top) ...@@ -151,8 +151,8 @@ unsigned long __init mmu_mapin_ram(unsigned long top)
return mapped; return mapped;
} }
void setup_initial_memory_limit(phys_addr_t first_memblock_base, void __init setup_initial_memory_limit(phys_addr_t first_memblock_base,
phys_addr_t first_memblock_size) phys_addr_t first_memblock_size)
{ {
/* We don't currently support the first MEMBLOCK not mapping 0 /* We don't currently support the first MEMBLOCK not mapping 0
* physical on those processors * physical on those processors
......
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