Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=17028c5c91580036eb41da2fad292965fa3b9a7d
Commit:     17028c5c91580036eb41da2fad292965fa3b9a7d
Parent:     c47953cfc6bad91c46272aad202ee33276671608
Author:     Martin Michlmayr <[EMAIL PROTECTED]>
AuthorDate: Tue May 15 21:03:36 2007 +0200
Committer:  Tony Luck <[EMAIL PROTECTED]>
CommitDate: Tue May 15 13:38:13 2007 -0700

    [IA64] Fix section conflict of ia64_mlogbuf_finish
    
    Building with GCC 4.2, I get the following error:
    
      CC      arch/ia64/kernel/mca.o
    arch/ia64/kernel/mca.c:275: error: __ksymtab_ia64_mlogbuf_finish causes a
    section type conflict
    
    This is because ia64_mlogbuf_finish is both declared static and exported.
    Fix by removing the export (which is unneeded now).
    
    Signed-off-by: Martin Michlmayr <[EMAIL PROTECTED]>
    Signed-off-by: Tony Luck <[EMAIL PROTECTED]>
---
 arch/ia64/kernel/mca.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/arch/ia64/kernel/mca.c b/arch/ia64/kernel/mca.c
index 93e82e4..1ead5ea 100644
--- a/arch/ia64/kernel/mca.c
+++ b/arch/ia64/kernel/mca.c
@@ -273,7 +273,6 @@ static void ia64_mlogbuf_finish(int wait)
 
        mlogbuf_finished = 1;
 }
-EXPORT_SYMBOL(ia64_mlogbuf_finish);
 
 /*
  * Print buffered messages from INIT context.
-
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