[SPARC64]: Mark functions called by paging_init() as __init.

Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller
2005-09-23 11:59:44 -07:00
parent 1c9ea5db00
commit 898cf0ecb7

View File

@@ -410,7 +410,7 @@ unsigned long prom_virt_to_phys(unsigned long promva, int *error)
* HI_OBP_ADDRESS range are handled in entry.S and do not use the vpte * HI_OBP_ADDRESS range are handled in entry.S and do not use the vpte
* scheme (also, see rant in inherit_locked_prom_mappings()). * scheme (also, see rant in inherit_locked_prom_mappings()).
*/ */
static void build_obp_range(unsigned long start, unsigned long end, unsigned long data) static void __init build_obp_range(unsigned long start, unsigned long end, unsigned long data)
{ {
unsigned long vaddr; unsigned long vaddr;
@@ -454,7 +454,7 @@ static inline int in_obp_range(unsigned long vaddr)
} }
#define OBP_PMD_SIZE 2048 #define OBP_PMD_SIZE 2048
static void build_obp_pgtable(int prom_trans_ents) static void __init build_obp_pgtable(int prom_trans_ents)
{ {
unsigned long i; unsigned long i;
@@ -480,7 +480,7 @@ static void build_obp_pgtable(int prom_trans_ents)
/* Read OBP translations property into 'prom_trans[]'. /* Read OBP translations property into 'prom_trans[]'.
* Return the number of entries. * Return the number of entries.
*/ */
static int read_obp_translations(void) static int __init read_obp_translations(void)
{ {
int n, node; int n, node;
@@ -505,7 +505,7 @@ static int read_obp_translations(void)
return n; return n;
} }
static void remap_kernel(void) static void __init remap_kernel(void)
{ {
unsigned long phys_page, tte_vaddr, tte_data; unsigned long phys_page, tte_vaddr, tte_data;
int tlb_ent = sparc64_highest_locked_tlbent(); int tlb_ent = sparc64_highest_locked_tlbent();
@@ -531,7 +531,7 @@ static void remap_kernel(void)
} }
} }
static void inherit_prom_mappings(void) static void __init inherit_prom_mappings(void)
{ {
int n; int n;