Skip to content

Commit

Permalink
m68knommu: mark mem init functions as __init
Browse files Browse the repository at this point in the history
Mark the m68knommu memory init functions as __init.

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Greg Ungerer authored and Linus Torvalds committed Oct 24, 2007
1 parent 1d2842e commit f386c3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/m68knommu/mm/init.c
Expand Up @@ -98,7 +98,7 @@ extern unsigned long memory_end;
* The parameters are pointers to where to stick the starting and ending
* addresses of available kernel virtual memory.
*/
void paging_init(void)
void __init paging_init(void)
{
/*
* Make sure start_mem is page aligned, otherwise bootmem and
Expand Down Expand Up @@ -147,7 +147,7 @@ void paging_init(void)
}
}

void mem_init(void)
void __init mem_init(void)
{
int codek = 0, datak = 0, initk = 0;
unsigned long tmp;
Expand Down

0 comments on commit f386c3c

Please sign in to comment.