diff options
Diffstat (limited to 'arch/sparc/mm/nosrmmu.c')
-rw-r--r-- | arch/sparc/mm/nosrmmu.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/sparc/mm/nosrmmu.c b/arch/sparc/mm/nosrmmu.c index b87b2bdeb..bae3bd140 100644 --- a/arch/sparc/mm/nosrmmu.c +++ b/arch/sparc/mm/nosrmmu.c @@ -1,4 +1,4 @@ -/* $Id: nosrmmu.c,v 1.2 1999/03/30 10:17:39 jj Exp $ +/* $Id: nosrmmu.c,v 1.3 1999/08/31 06:54:35 davem Exp $ * nosrmmu.c: This file is a bunch of dummies for sun4 compiles, * so that it does not need srmmu and avoid ifdefs. * @@ -14,24 +14,24 @@ static char shouldnothappen[] __initdata = "SUN4 kernel can only run on SUN4\n"; enum mbus_module srmmu_modtype; -__initfunc(static void should_not_happen(void)) +static void __init should_not_happen(void) { prom_printf(shouldnothappen); prom_halt(); } -__initfunc(void srmmu_frob_mem_map(unsigned long start_mem)) +void __init srmmu_frob_mem_map(unsigned long start_mem) { should_not_happen(); } -__initfunc(unsigned long srmmu_paging_init(unsigned long start_mem, unsigned long end_mem)) +unsigned long __init srmmu_paging_init(unsigned long start_mem, unsigned long end_mem) { should_not_happen(); return 0; } -__initfunc(void ld_mmu_srmmu(void)) +void __init ld_mmu_srmmu(void) { should_not_happen(); } @@ -44,7 +44,7 @@ void srmmu_unmapioaddr(unsigned long virt_addr) { } -__initfunc(void srmmu_end_memory(unsigned long memory_size, unsigned long *mem_end_p)) +void __init srmmu_end_memory(unsigned long memory_size, unsigned long *mem_end_p) { return 0; } |