]> Pileus Git - ~andy/linux/commitdiff
[POWERPC] Fix modpost warning
authorKumar Gala <galak@kernel.crashing.org>
Wed, 23 May 2007 12:49:37 +0000 (07:49 -0500)
committerKumar Gala <galak@kernel.crashing.org>
Wed, 23 May 2007 12:49:37 +0000 (07:49 -0500)
Mark pte_alloc_one_kernel as __init_refok to fix the following warning:

WARNING: arch/powerpc/mm/built-in.o(.text+0x1068): Section mismatch: reference to .init.text:early_get_page (between 'pte_alloc_one_kernel' and 'steal_context')

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
arch/powerpc/mm/pgtable_32.c

index d8232b7a08f70043e45246e3c8018b093c7e37cc..f6ae1a57d652999c679545ae21fd5b6499cfae58 100644 (file)
@@ -93,7 +93,7 @@ void pgd_free(pgd_t *pgd)
        free_pages((unsigned long)pgd, PGDIR_ORDER);
 }
 
-pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
+__init_refok pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
 {
        pte_t *pte;
        extern int mem_init_done;