Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4ebd5233f0420f1e383c38f962ec84c4d53fbbad
Commit:     4ebd5233f0420f1e383c38f962ec84c4d53fbbad
Parent:     cf7578995398e20d3ab0748e6d5f83ea6c7a0035
Author:     Ralf Baechle <[EMAIL PROTECTED]>
AuthorDate: Thu May 31 16:15:01 2007 +0100
Committer:  Ralf Baechle <[EMAIL PROTECTED]>
CommitDate: Mon Jun 11 18:20:54 2007 +0100

    [MIPS] Fix modpost warnings by making start_secondary __cpuinit
    
    WARNING: arch/mips/kernel/built-in.o(.text+0x9a58): Section mismatch: 
reference to .init.text:cpu_report (between 'start_secondary' and 
'smp_prepare_boot_cpu')
    WARNING: arch/mips/kernel/built-in.o(.text+0x9a60): Section mismatch: 
reference to .init.text:per_cpu_trap_init (between 'start_secondary' and 
'smp_prepare_boot_cpu')
    WARNING: arch/mips/kernel/built-in.o(.text+0x9adc): Section mismatch: 
reference to .init.text:cpu_probe (between 'start_secondary' and 
'smp_prepare_boot_cpu')
    mipsel-linux-objcopy -S -O srec --remove-section=.reginfo 
--remove-section=.mdebug --remove-section=.comment --remove-section=.note 
--remove-section=.pdr --remove-section=.options --remove-section=.MIPS.options 
vmlinux arch/mips/boot/vmlinux.srec
    
    Signed-off-by: Ralf Baechle <[EMAIL PROTECTED]>
---
 arch/mips/kernel/smp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c
index c46e479..67edfa7 100644
--- a/arch/mips/kernel/smp.c
+++ b/arch/mips/kernel/smp.c
@@ -68,7 +68,7 @@ extern ATTRIB_NORET void cpu_idle(void);
  * First C code run on the secondary CPUs after being started up by
  * the master.
  */
-asmlinkage void start_secondary(void)
+asmlinkage __cpuinit void start_secondary(void)
 {
        unsigned int cpu;
 
-
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