Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=862a7284980d809a583e9a34c774fab84e0a46f8
Commit:     862a7284980d809a583e9a34c774fab84e0a46f8
Parent:     27630bec9478a2dd387c68b5e435ed3fdd3a513e
Author:     Rojhalat Ibrahim <[EMAIL PROTECTED]>
AuthorDate: Fri Feb 9 15:10:38 2007 +0100
Committer:  Kumar Gala <[EMAIL PROTECTED]>
CommitDate: Fri Feb 9 09:36:37 2007 -0600

    [PPC] Fix compile error for e500 core based processors
    
    We get the following compiler error:
    
      CC      arch/ppc/kernel/ppc_ksyms.o
    arch/ppc/kernel/ppc_ksyms.c:275: error: '__mtdcr' undeclared here (not in a 
function)
    arch/ppc/kernel/ppc_ksyms.c:275: warning: type defaults to 'int' in 
declaration of '__mtdcr'
    arch/ppc/kernel/ppc_ksyms.c:276: error: '__mfdcr' undeclared here (not in a 
function)
    arch/ppc/kernel/ppc_ksyms.c:276: warning: type defaults to 'int' in 
declaration of '__mfdcr'
    make[1]: *** [arch/ppc/kernel/ppc_ksyms.o] Error 1
    
    This is due to the EXPORT_SYMBOL for __mtdcr/__mfdcr not having the proper 
CONFIG protection
    
    Signed-off-by: Rojhalat Ibrahim <[EMAIL PROTECTED]>
    Signed-off-by: Kumar Gala <[EMAIL PROTECTED]>
---
 arch/ppc/kernel/ppc_ksyms.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/ppc/kernel/ppc_ksyms.c b/arch/ppc/kernel/ppc_ksyms.c
index 1f49503..1318b6f 100644
--- a/arch/ppc/kernel/ppc_ksyms.c
+++ b/arch/ppc/kernel/ppc_ksyms.c
@@ -271,7 +271,7 @@ EXPORT_SYMBOL(mmu_hash_lock); /* For MOL */
 extern long *intercept_table;
 EXPORT_SYMBOL(intercept_table);
 #endif /* CONFIG_PPC_STD_MMU */
-#if defined(CONFIG_40x) || defined(CONFIG_BOOKE)
+#ifdef CONFIG_PPC_DCR_NATIVE
 EXPORT_SYMBOL(__mtdcr);
 EXPORT_SYMBOL(__mfdcr);
 #endif
-
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