tree b4540debbead178e80e5f66a31d94ca81d097b7c
parent e187a48c743c6ea5044de8012e656e79896b22b2
author Paul Mackerras <[EMAIL PROTECTED]> Tue Apr 12 08:25:08 2005
committer Linus Torvalds <[EMAIL PROTECTED]> Tue Apr 12 08:25:08 2005

[PATCH] ppc64: fix export of wrong symbol

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 <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>

 ppc_ksyms.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

Index: arch/ppc64/kernel/ppc_ksyms.c
===================================================================
--- e299e967a72bb9b70526d7b155a3baf7720f1a63/arch/ppc64/kernel/ppc_ksyms.c  
(mode:100644 sha1:449e962a403b1ce66ae75dd9c31a3eae1e03e105)
+++ b4540debbead178e80e5f66a31d94ca81d097b7c/arch/ppc64/kernel/ppc_ksyms.c  
(mode:100644 sha1:401e56251192a2794466a8ec6875bdccea3a13e1)
@@ -74,7 +74,7 @@
 #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
-
To unsubscribe from this list: send the line "unsubscribe bk-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