]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[POWERPC] arch_add_memory() cannot be __devinit
authorGeert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Fri, 28 Mar 2008 16:10:50 +0000 (03:10 +1100)
committerPaul Mackerras <paulus@samba.org>
Tue, 1 Apr 2008 09:43:08 +0000 (20:43 +1100)
WARNING: vmlinux.o(.text+0xb41b0): Section mismatch in reference from the
function .add_memory() to the function .devinit.text:.arch_add_memory()
The function .add_memory() references
the function __devinit .arch_add_memory().
This is often because .add_memory lacks a __devinit
annotation or the annotation of .arch_add_memory is wrong.

arch_add_memory() is also not __devinit on other architectures

Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/mm/mem.c

index 60c019cdc69f629bd14b7f506208e1035b9a3d0e..1b119b92a82697b3aef48ae3705137f1dbd3790e 100644 (file)
@@ -111,7 +111,7 @@ int memory_add_physaddr_to_nid(u64 start)
 }
 #endif
 
-int __devinit arch_add_memory(int nid, u64 start, u64 size)
+int arch_add_memory(int nid, u64 start, u64 size)
 {
        struct pglist_data *pgdata;
        struct zone *zone;