]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
[PATCH] ppc64: fix export of wrong symbol
authorPaul Mackerras <paulus@samba.org>
Sat, 16 Apr 2005 22:24:34 +0000 (15:24 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Sat, 16 Apr 2005 22:24:34 +0000 (15:24 -0700)
In arch/ppc64/kernel/ppc_ksyms.c, we are still exporting
flush_icache_range, but that has been changed to be an inline in
include/asm-ppc64/cacheflush.h which calls __flush_icache_range (defined in
arch/ppc64/kernel/misc.S).

This patch changes the export to __flush_icache_range, thus allowing
modules to use the inline flush_icache_range.

Signed-off-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
arch/ppc64/kernel/ppc_ksyms.c

index 6ced63a3439fbba01ed48c69b266f3585173e7c1..b230a63fe4c802e3fbeb5bb7e77910b1ef6edd1d 100644 (file)
@@ -74,7 +74,7 @@ EXPORT_SYMBOL(giveup_fpu);
 #ifdef CONFIG_ALTIVEC
 EXPORT_SYMBOL(giveup_altivec);
 #endif
-EXPORT_SYMBOL(flush_icache_range);
+EXPORT_SYMBOL(__flush_icache_range);
 
 #ifdef CONFIG_SMP
 #ifdef CONFIG_PPC_ISERIES