Commit ba3e413a authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds

[PATCH] (mostly i386) mm cleanup

- arch/i386/mm/boot_ioremap.c: make a variable static
- frv/ppc highmem.c: remove stale kmap_init prototypes
- arch/um/kernel/mem.c: make kmap_init static
- arch/i386/mm/init.c: make five functions static
Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent f18778da
...@@ -61,8 +61,8 @@ static void __boot_ioremap(unsigned long phys_addr, unsigned long nrpages, ...@@ -61,8 +61,8 @@ static void __boot_ioremap(unsigned long phys_addr, unsigned long nrpages,
/* the virtual space we're going to remap comes from this array */ /* the virtual space we're going to remap comes from this array */
#define BOOT_IOREMAP_PAGES 4 #define BOOT_IOREMAP_PAGES 4
#define BOOT_IOREMAP_SIZE (BOOT_IOREMAP_PAGES*PAGE_SIZE) #define BOOT_IOREMAP_SIZE (BOOT_IOREMAP_PAGES*PAGE_SIZE)
__initdata char boot_ioremap_space[BOOT_IOREMAP_SIZE] static __initdata char boot_ioremap_space[BOOT_IOREMAP_SIZE]
__attribute__ ((aligned (PAGE_SIZE))); __attribute__ ((aligned (PAGE_SIZE)));
/* /*
* This only applies to things which need to ioremap before paging_init() * This only applies to things which need to ioremap before paging_init()
......
...@@ -239,7 +239,7 @@ EXPORT_SYMBOL(kmap_pte); ...@@ -239,7 +239,7 @@ EXPORT_SYMBOL(kmap_pte);
#define kmap_get_fixmap_pte(vaddr) \ #define kmap_get_fixmap_pte(vaddr) \
pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr), vaddr), (vaddr)), (vaddr)) pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr), vaddr), (vaddr)), (vaddr))
void __init kmap_init(void) static void __init kmap_init(void)
{ {
unsigned long kmap_vstart; unsigned long kmap_vstart;
...@@ -250,7 +250,7 @@ void __init kmap_init(void) ...@@ -250,7 +250,7 @@ void __init kmap_init(void)
kmap_prot = PAGE_KERNEL; kmap_prot = PAGE_KERNEL;
} }
void __init permanent_kmaps_init(pgd_t *pgd_base) static void __init permanent_kmaps_init(pgd_t *pgd_base)
{ {
pgd_t *pgd; pgd_t *pgd;
pud_t *pud; pud_t *pud;
...@@ -281,7 +281,7 @@ void __init one_highpage_init(struct page *page, int pfn, int bad_ppro) ...@@ -281,7 +281,7 @@ void __init one_highpage_init(struct page *page, int pfn, int bad_ppro)
} }
#ifndef CONFIG_DISCONTIGMEM #ifndef CONFIG_DISCONTIGMEM
void __init set_highmem_pages_init(int bad_ppro) static void __init set_highmem_pages_init(int bad_ppro)
{ {
int pfn; int pfn;
for (pfn = highstart_pfn; pfn < highend_pfn; pfn++) for (pfn = highstart_pfn; pfn < highend_pfn; pfn++)
...@@ -503,7 +503,7 @@ void __init paging_init(void) ...@@ -503,7 +503,7 @@ void __init paging_init(void)
* but fortunately the switch to using exceptions got rid of all that. * but fortunately the switch to using exceptions got rid of all that.
*/ */
void __init test_wp_bit(void) static void __init test_wp_bit(void)
{ {
printk("Checking if this processor honours the WP bit even in supervisor mode... "); printk("Checking if this processor honours the WP bit even in supervisor mode... ");
......
...@@ -138,7 +138,7 @@ pgprot_t kmap_prot; ...@@ -138,7 +138,7 @@ pgprot_t kmap_prot;
pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr), (vaddr)),\ pte_offset_kernel(pmd_offset(pud_offset(pgd_offset_k(vaddr), (vaddr)),\
(vaddr)), (vaddr)) (vaddr)), (vaddr))
void __init kmap_init(void) static void __init kmap_init(void)
{ {
unsigned long kmap_vstart; unsigned long kmap_vstart;
......
...@@ -44,8 +44,6 @@ extern unsigned long highstart_pfn, highend_pfn; ...@@ -44,8 +44,6 @@ extern unsigned long highstart_pfn, highend_pfn;
#define kmap_pte ______kmap_pte_in_TLB #define kmap_pte ______kmap_pte_in_TLB
extern pte_t *pkmap_page_table; extern pte_t *pkmap_page_table;
extern void kmap_init(void);
#define flush_cache_kmaps() do { } while (0) #define flush_cache_kmaps() do { } while (0)
/* /*
......
...@@ -33,8 +33,6 @@ extern pte_t *kmap_pte; ...@@ -33,8 +33,6 @@ extern pte_t *kmap_pte;
extern pgprot_t kmap_prot; extern pgprot_t kmap_prot;
extern pte_t *pkmap_page_table; extern pte_t *pkmap_page_table;
extern void kmap_init(void);
/* /*
* Right now we initialize only a single pte table. It can be extended * Right now we initialize only a single pte table. It can be extended
* easily, subsequent pte tables have to be allocated in one physical * easily, subsequent pte tables have to be allocated in one physical
......
...@@ -35,8 +35,6 @@ extern pte_t *kmap_pte; ...@@ -35,8 +35,6 @@ extern pte_t *kmap_pte;
extern pgprot_t kmap_prot; extern pgprot_t kmap_prot;
extern pte_t *pkmap_page_table; extern pte_t *pkmap_page_table;
extern void kmap_init(void) __init;
/* /*
* Right now we initialize only a single pte table. It can be extended * Right now we initialize only a single pte table. It can be extended
* easily, subsequent pte tables have to be allocated in one physical * easily, subsequent pte tables have to be allocated in one physical
......
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