Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f1aed92464def83fc3677cade823cad71cf5f0d4
Commit:     f1aed92464def83fc3677cade823cad71cf5f0d4
Parent:     405861a0429113f8e426092af09dd05ec6209410
Author:     Kumar Gala <[EMAIL PROTECTED]>
AuthorDate: Wed May 23 07:49:37 2007 -0500
Committer:  Kumar Gala <[EMAIL PROTECTED]>
CommitDate: Wed May 23 07:49:37 2007 -0500

    [POWERPC] Fix modpost warning
    
    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 <[EMAIL PROTECTED]>
---
 arch/powerpc/mm/pgtable_32.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/powerpc/mm/pgtable_32.c b/arch/powerpc/mm/pgtable_32.c
index d8232b7..f6ae1a5 100644
--- a/arch/powerpc/mm/pgtable_32.c
+++ b/arch/powerpc/mm/pgtable_32.c
@@ -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;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to