tree 98c2798d1751128d01ae600e4d4737e48dfb3b78 parent dfbacdc1a0b568dfa69fb2c1b39b608074001083 author Paul Mackerras <[EMAIL PROTECTED]> Sun, 17 Apr 2005 05:24:34 -0700 committer Linus Torvalds <[EMAIL PROTECTED]> Sun, 17 Apr 2005 05:24:34 -0700
[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]> ppc64/kernel/ppc_ksyms.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: arch/ppc64/kernel/ppc_ksyms.c =================================================================== --- f63fdb5db967253e46472ff776d1e22c38cee16e/arch/ppc64/kernel/ppc_ksyms.c (mode:100644 sha1:6ced63a3439fbba01ed48c69b266f3585173e7c1) +++ 98c2798d1751128d01ae600e4d4737e48dfb3b78/arch/ppc64/kernel/ppc_ksyms.c (mode:100644 sha1:b230a63fe4c802e3fbeb5bb7e77910b1ef6edd1d) @@ -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
