Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cdcc9eb5e014a58aba047193a73a0de8b61b988d
Commit:     cdcc9eb5e014a58aba047193a73a0de8b61b988d
Parent:     18d0e9b4799ff6e43613a068eba289ba4e002535
Author:     Atsushi Nemoto <[EMAIL PROTECTED]>
AuthorDate: Mon Jul 23 00:07:34 2007 +0900
Committer:  Ralf Baechle <[EMAIL PROTECTED]>
CommitDate: Tue Jul 24 16:02:48 2007 +0100

    [MIPS] Fix marge error due to conflict in arch/mips/kernel/head.S
    
    __INIT directive just before kernel_entry was ignored for most platforms.
    This patch fixes it and get rid of this warning:
    
    WARNING: vmlinux.o(.text+0x478): Section mismatch: reference to 
.init.text:start_kernel (between '_stext' and 'run_init_process')
    
    Signed-off-by: Atsushi Nemoto <[EMAIL PROTECTED]>
    Signed-off-by: Ralf Baechle <[EMAIL PROTECTED]>
---
 arch/mips/kernel/head.S |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/mips/kernel/head.S b/arch/mips/kernel/head.S
index f78538e..c15bbc4 100644
--- a/arch/mips/kernel/head.S
+++ b/arch/mips/kernel/head.S
@@ -141,7 +141,7 @@
 EXPORT(stext)                                  # used for profiling
 EXPORT(_stext)
 
-#ifdef CONFIG_BOOT_RAW
+#ifndef CONFIG_BOOT_RAW
        /*
         * Give us a fighting chance of running if execution beings at the
         * kernel load address.  This is needed because this platform does
-
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