Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fb4bb133ada7423b2504bb64bb6cc95c079a7d9d
Commit:     fb4bb133ada7423b2504bb64bb6cc95c079a7d9d
Parent:     9a0f3b73601a146998236237d82b55ae80337f10
Author:     Atsushi Nemoto <[EMAIL PROTECTED]>
AuthorDate: Sun Jul 22 23:44:20 2007 +0900
Committer:  Ralf Baechle <[EMAIL PROTECTED]>
CommitDate: Tue Jul 24 16:02:47 2007 +0100

    [MIPS] Mark prom_free_prom_memory as __init_refok
    
    > WARNING: vmlinux.o(.text+0xbf20): Section mismatch: reference to
    > .init.text:prom_free_prom_memory (between 'free_initmem' and 
'copy_from_user_page')
    
    prom_free_prom_memory() is called _before_ freeing init sections, so
    it is false positive.  __init_refok can be used for such cases.
    
    Signed-off-by: Atsushi Nemoto <[EMAIL PROTECTED]>
    Signed-off-by: Ralf Baechle <[EMAIL PROTECTED]>
---
 arch/mips/mm/init.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/mips/mm/init.c b/arch/mips/mm/init.c
index 4c80528..b8cb0dd 100644
--- a/arch/mips/mm/init.c
+++ b/arch/mips/mm/init.c
@@ -484,7 +484,7 @@ void free_initrd_mem(unsigned long start, unsigned long end)
 }
 #endif
 
-void free_initmem(void)
+void __init_refok free_initmem(void)
 {
        prom_free_prom_memory();
        free_init_pages("unused kernel memory",
-
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